我有這樣的HTML如何對齊自定義按鈕中的中心文字?
<head>
<title>HTML5 App</title>
<link rel="stylesheet" type="text/css" href="css/custom.css">
<link rel="stylesheet" type="text/css" href="css/buttons.css">
</head>
<body>
<!--Estructura -->
<div id="botones">
<button class="btn" data-am-type="button">Soy un <button></button>
<a class="btn" data-am-type="button">Soy un <a></a>
<div class="btn" data-am-type="button">Soy un <div></div>
<input class="btn" type="button" value="Soy un <input>">
</div>
</body>
在<按鈕>和<輸入>,文本是按鈕的對準中心但在<一個>和< DIV>,文本顯示按鈕的頂部。我認爲< button>和< input>繼承了一些屬性,因此它們將按鈕中間的文本對齊。
我看到這個
,我希望所有的按鈕排列在中間文本。
類 「BTN」 這是
.btn{
display: inline-block;
padding: 4px 12px; /* Padding por defecto */
font-size: 16px; /* Tamaño fuente por defecto */
line-height: 20px; /* Tamaño de linea */
text-align: center;
vertical-align: middle;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
cursor: pointer;
height: 80px;
background-color: #f5f5f5; /* por si no se ve el gradiente, aunque si lo pruebo en Chrome nunca deberia verse este color*/
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
border: 1px solid #cccccc;
-webkit-border-radius: 4px;
}
任何想法?
可能重複[Button的文本垂直對齊](http://stackoverflow.com/questions/15487408/buttons-text-vertical-align) – Pensierinmusica