超级基本问题,我是CSS的新手...
在我的样式表中,我有:
#topheader {
position: absolute;
width: 100%;
height: 100px;
background-color: #D1E6DA;
font-size: 200%;
}
如何添加:
p {
margin: 20px;
}
在#topheader(不是整个页面)中?
最佳答案
#topheader p{
margin: 20px;
}
看到
#topheader
和p
之间的空格了吗?它表示顶部标题内有p。您需要保持
#topheader { }
不变,并像我上面写的那样添加另一个带有p
的内容。因此您将拥有以下内容:
#topheader {
position: absolute;
width: 100%;
height: 100px;
background-color: #D1E6DA;
font-size: 200%;
}
#topheader p{
margin: 20px;
}
关于css - 如何为部分设置p边距,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26077076/