我有一個類似儀表板視圖的交通燈,我必須爲我的一個頁面提供交通燈。但我不能在多個調整的情況下使橫線運作。添加內聯水平線
我想要什麼:對我有什麼Want
小提琴:https://jsfiddle.net/gunnersfan/dx19y3f4/
CSS:
.bubble {
height: 30px;
width: 30px;
color: white;
display: inline-block;
text-align: center;
vertical-align: center;
border-radius: 50%;
margin-right: 50px;
margin-left: 50px;
font-size: 90%;
}
.red-bg {
background: red;
}
.green-bg {
background: green;
}
.blue-bg {
background: blue;
}
.inline-div {
display: inline;
font-size: 75%;
font-family: verdana;
margin-left: 50px;
margin-right: 50px;
}
[表單元格之間的div CSS線(可能的重複http://stackoverflow.com/questions/25460005/css-line -this-table-cell-div) – jcaron
只是一個與你的問題無關的提示:使用'line-height'等於'height'來使你的數字在圓圈中垂直居中。在你的情況如此:'line-height:30px;' – fremail
謝謝@fremail,這是一個有用的提示。 – gunnersfan