Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在“条款和条件”标题上设置一个内部边框,如下所示而且 我不想使用表格。有没有办法解决?请帮忙。
尝试这个。您可以根据您的要求修改/修改样式,但我给了您一个基本的方法。
.header{background:#fff; padding:10px;} .inner-header{border:1px solid grey;} <div class="header"> <div class="inner-header"> This one will have the border </div> </div>