简体   繁体   中英

Using Grid960 Text on each Other

I'm trying to use Grid960 but I got some issue I got Aside text and Article mixed 在此处输入图片说明 this's my code :

<body class="container_12"> 
    <nav class="grid_12">
    </nav>
    <article class="grid_7 push_1">
        <h2>I'm the Article Title</h2>
        <p></p>
        <a href="#" class="btn left" name="Showme"> Show More</a>           
    </article>  
    <aside class="grid_4">
        <p> </p>
        <p></p>

    </aside>
<footer class="grid_12">
</footer>
</body>

Also How To make it responsive what I have to add?

change the first article block to:

<article class="grid_7 prefix_1">
    <h2>I'm the Article Title</h2>
    <p></p>
    <a href="#" class="btn left" name="Showme"> Show More</a>           
</article> 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM