問題は、それが均等に3ボタンが縦に異なっ
<div>
<button type="button" onclick="ab('*');" class="bbold">B</button>
<button type="button" onclick="ab('_');" class="bitalic">I</button>
<button type="button" onclick="ab('code');" class="bcode">{code}</button>
</div>
整列のものより私はbitalicからフォントファミリを削除する場合
I
ボタンは、(特にクロムで)少し低くとどまるということです揃えます
.bbold, .bitalic, .bcode
{
height: 30px;
min-width: 30px;
}
.bbold {
font-weight: bold;
}
.bitalic
{
font-family: "Times New Roman";
font-style: italic;
font-weight: bold;
}
.bcode
{
font-family: consolas, courier;
}