0
試圖找出如何使用下劃線。之前,他們對於不同的屏幕排版響應的字體,我通常會寫不同的媒體查詢如下:如何在Underscores(wordpress)上製作響應排版?
@media screen and (min-width: 480px) {
html{
font-size: 18px;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1rem;
}
etc..
}
@media screen and (min-width: 700px) {
html{
font-size: 14px;
}
h1 {
font-size: 0.5rem;
}
h2 {
font-size: 1.3rem;
}
etc..
}
使用下劃線,我該如何更改父字體大小等等的子元素可以有一個rem
大小?
我嘗試添加字體大小,因爲它似乎是父元素(?)
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
color: #404040;
font-family: Merriweather, sans-serif;
font-size:20px;
font-size: 1rem;
line-height: 1.5;
color:red;
}
會是什麼這樣做的最好的方法?
我很困惑,因爲在wordpress的下劃線中,他們有一個註釋版式部分,它沒有定義html類 – Shaz
html不是一個類。它只是像許多其他人一樣的html元素。所有的CSS屬性都可以被覆蓋。你可以刪除,編輯或添加新的來獲得你想要的。所有的瀏覽器都有預定義的樣式,默認的字體大小是16px。如果你不改變它,那就是雷姆的基礎。 – curveball