| 
 | 
 
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册  
 
x
 
代码如下 
!DOCTYPE html> 
<html lang="en"> 
<head> 
    <style> 
        body { 
            font-family:Arial, Helvetica Neue, sans-serif; 
        } 
        ul { 
            list-style: none; 
            padding: 0; 
        } 
        li { 
            display: inline-block; 
        } 
        section.feature-box { 
            display:flex; 
        } 
        section.feature-box.sales div { 
            background:gray; 
            width:100%; 
            margin: 1px; 
        } 
        section.feature-box.closeouts div { 
            background:red; 
            width:100%; 
            margin: 1px; 
        } 
    </style> 
</head> 
<body> 
    <ul> 
        <li><a href="index.html">home</a></li> 
        <li><a href="contact.html">Contact</a></li> 
        <li><a href="locations.html">Locations</a></li> 
        <li><a href="directions.html">Directions</a></li> 
    </ul> 
    <section class="feature-box sales"> 
        <div>Section a</div> 
        <div>Section b</div> 
        <div>Section c</div> 
    </section> 
    <section class="feture-box closeouts"> 
        <div>Section d</div> 
        <div>Section e</div> 
    </section> 
</body> 
</html>
 |   
 
 
 
 |