.mainheading
{
font-weight: 700;
font-style: normal;
position: relative;
padding-bottom: 1.33333rem;
display: table;
line-height: 1.1;
}
.mainheading::after
{
content:'';
display: block;
position: absolute;
border-bottom: 2px solid #72bf44;
min-width: 110px;
width: 70%;
bottom: 0;
left: 0.2rem;
}
我工作的一個報告工具,我試圖將這個CSS到標籤如何設置此CSS的行高?
但行高不工作。 推薦我哪裏出了錯
其行之間的空間 – Madhu
如果您只使用一個數字作爲行高,則字體大小乘以該行高的數字。這似乎適用於發佈的代碼,所以除非在其他地方有更多*特定的*樣式,否則它正在工作 – adeneo
@Madhu調試CSS的最佳方法是打開瀏覽器的開發工具(通常爲F12)並檢查該元素;看看應用到它的CSS,看看你的風格是否被應用或不被覆蓋和/或覆蓋。您也可以在這裏(本地)手動編輯CSS以預覽更改。 – Wrinn