CSS中怎么把字体下移?在CSS中,我们可以使用下面的样式来把字体下移:p { : relative; top: 10px; } 在这个样式中,我们把p元素的位置设为相对定位,然后使它的顶部向下移动1...
CSS中怎么把字体下移?
在CSS中,我们可以使用下面的样式来把字体下移:
p {
position: relative;
top: 10px;
} p {
position: relative;
top: 20px;
} p {
margin-top: 10px;
}