救命。我似乎无法在wordpress genesis示例主题中显示边框和边距。在style.css中,我输入了这段代码但是当我在chrome wordpress中刷新时,没有出现。我检查了elemented并确认html结构有.site-header .site-inner .site-footer。我的代码出了什么问题????
Chrome浏览器运行wordpress 5。
.site-header,
.site-inner,
.site-footer {
border: 3px solid #000;
margin: 2 auto;
max-width: 1300px;}
我应该展示一些边界和边距。
添加“!important”。 (你的css类重写很重要。)
例如-
.site-header,
.site-inner,
.site-footer {
border: 3px solid #000 !important;
margin: 2 auto !important;
max-width: 1300px !important;}
谢谢Obsidian Age,控制班R工作!!!!