ホームページ  >  記事  >  ウェブフロントエンド  >  CSS 左 div 固定、右 divadaptive_html/css_WEB-ITnose

CSS 左 div 固定、右 divadaptive_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-24 12:27:051170ブラウズ

写真に示すように、ナビゲーションやリンクが脇にあり、右側のメインは重要なコンテンツを表示するため、左側の幅は固定する必要があり、右側のメインはそれに適応できる場合があります。残りの幅:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>    <title>test</title>    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    <meta http-equiv="Content-Language" content="zh-CN" />    <meta name="Keywords" content="" />    <meta name="Description" content="" />    <!-- <link rel="stylesheet" href="style/.css" type="text/css" /> -->    <style type="text/css">        *{margin:0; padding:0;}        /* div{border:1px solid #CCC;} */        .home{width:70%; min-width:270px;margin:0 auto;}        .header{height:80px; width:100%; background:#CCC}        .nav{height:50px; width:100%; background:#bbb}        .content{}        .content .aside{width:260px; height:400px; float:left; background:#999}        .content .main{height:400px; margin-left:260px; overflow:hidden;zoom:1; background:#eee}        .footer{height:80px; background:#888;}    </style></head><body>    <div class="home">        <div class="header">            header        </div>        <div class="nav">            nav        </div>        <div class="content">            <div class="aside">aside</div>            <div class="main">main</div>        </div>        <div class="footer">            footer        </div>    </div></body></html>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。