请参考此页面: http: //www.newsweekgradplus.com/Business/Degree/Accounting
如果您查看中间列,前 4 个框是灰色的,之后是白色的。
我想要做的是在灰色和白色矩形之间添加一条水平线,但我似乎无法定位它。
请参考此页面: http: //www.newsweekgradplus.com/Business/Degree/Accounting
如果您查看中间列,前 4 个框是灰色的,之后是白色的。
我想要做的是在灰色和白色矩形之间添加一条水平线,但我似乎无法定位它。
这将使任何前面的白框br
和灰色框的顶部都有一个(黑色)边框。
.mbaBox+br+.mbaBox-white {
position: relative;
}
.mbaBox+br+.mbaBox-white:after {
content: " ";
background: #000; /* your color */
width: 100%;
height: 1px;
position: absolute;
top: -10px;
left: 0;
}
使用选择器.mbaBox+br+.mbaBox-white
,您将获得灰色框之后的第一个白框,为此元素自定义您的 CSS :)。
玩得开心 !
在这里阅读更多http://www.w3schools.com/cssref/sel_element_pluss.asp