91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css網頁布局案例分析

發布時間:2022-03-11 15:06:11 來源:億速云 閱讀:156 作者:iii 欄目:web開發

這篇文章主要介紹了css網頁布局案例分析的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇css網頁布局案例分析文章都會有所收獲,下面我們一起來看看吧。

position:static
忽略top/bottom/left/right或者z-index
position:relative
設置相對定位的元素不會脫離文檔流
position:fixed
不會隨著視口滾動而滾動,繼承absolute的特點
position:sticky
和top屬性搭配,可以設置吸附導航效果,但兼容性不太理想

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
    <style> *{margin:0;padding:0;} div{width:100%;} .banner{text-align: center;background-color:#f2f4f6;padding:100px 0;} .nav{text-align: center;border:1px solid #333;position: sticky;top:0;background-color:#abcdef;padding:20px 0;} .content{width:60%;margin:50px auto;} p{margin-bottom:50px;}
    </style>
</head>
<body>
    <div class="banner">這是廣告圖</div>
    <div class="nav">導航 | 導航 | 導航</div>
    <div class="content">
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
        <p>position:sticky是css定位新增屬性;可以說是相對定位relative和固定定位fixed的結合;它主要用在對scroll事件的監聽上;簡單來說,在滑動過程中,某個元素距離其父元素的距離達到sticky粘性定位的要求時(比如top:100px);position:sticky這時的效果相當于fixed定位,固定到適當位置。</p>
    </div>
</body>
</html>

css網頁布局案例分析css網頁布局案例分析
 
 
左側固定三級導航demo:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
    <style> *{margin:0;padding:0;} .page{width:100%;} .nav{position: fixed;top:50%;left:0;width:160px;height:205px;margin-top:-102.5px;} .nav-li{width:100%;/*height:40px;*/line-height:40px;text-align:center;color:#fff;background:#333;border-bottom:1px solid #fff;cursor: pointer;} .nav-li:hover ul{display: block;} .title{width:100%;height:40px;} .nav-li ul{width:100%;background-color: #fff;display: none;} .nav-li ul li{width:100%;height:40px;line-height:40px;text-align:center;color:#333;border-bottom:1px dashed #666;position: relative;} .nav-li ul li:hover .list3{display: block;} .list3{width:100%;position: absolute;top:0;left:160px;display: none;} .item3{width:100%;height:40px;line-height:40px;text-align:center;background:#444;color:#fff;border-bottom:1px dashed #666;}
    </style>
</head>
<body>
    <div class="page">
        <div class="nav">
            <div class="nav-li">
                <div calss="title">一級導航1</div>
                <ul>
                    <li>二級導航1 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                </ul>
            </div>
            <div class="nav-li">
                <div calss="title">一級導航1</div>
                <ul>
                    <li>二級導航1 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2</li>
                    <li>二級導航3</li>
                    <li>二級導航4</li>
                </ul>
            </div>
            <div class="nav-li">
                <div calss="title">一級導航1</div>
                <ul>
                    <li>二級導航1 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2</li>
                    <li>二級導航3</li>
                    <li>二級導航4</li>
                </ul>
            </div>
            <div class="nav-li">
                <div calss="title">一級導航1</div>
                <ul>
                    <li>二級導航1 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2</li>
                    <li>二級導航3</li>
                    <li>二級導航4</li>
                </ul>
            </div>
            <div class="nav-li">
                <div calss="title">一級導航1</div>
                <ul>
                    <li>二級導航1 <div class="list3">
                            <div class="item3">三級導航1</div>
                            <div class="item3">三級導航2</div>
                            <div class="item3">三級導航3</div>
                            <div class="item3">三級導航4</div>
                        </div>
                    </li>
                    <li>二級導航2</li>
                    <li>二級導航3</li>
                    <li>二級導航4</li>
                </ul>
            </div>
        </div>
    </div>
</body>
</html>

css網頁布局案例分析
 
 html+css網頁項目布局demo:
 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
    <style> *{margin:0;padding:0;} header{width:100%;height:100px;} header img{width:300px;height:85px;padding-left:100px;padding-top:8px;} .logo{float:left;} .nav{float:right;} .nav ul{padding-right:100px;} .nav ul li{float: left;list-style: none;width:80px;height:100px;line-height:100px;color:#333;} .main{position: relative;} .top{width:100%;height:600px;} .top img{width:100%;height:100%;} .topLayer{width:100%;height:600px;position: absolute;background-color: #000;opacity: .5;top:0;left:0;} .topLayer-top{width:500px;height:300px;position: absolute;top:280px;margin-top:-150px;z-index:2;left:50%;margin-left:-250px;} .word{padding-top:100px;color:#fff;font-size: 45px;font-weight: bold; text-align: center;} .topLayer-top button{width:200px;height:60px;margin-top:50px;color:#fff;background-color: #f5704f;font-weight: bold;text-align: center;font-size: 14px;border-radius:8px;margin-left:150px;border: 1px solid #fff;cursor: pointer;} .topLayer-top button:hover{background-color: #fff;color:#f5704f;border: 1px solid #f5704f;} .middle{width:1000px;margin:0 auto;} .common{float: left;width:33.3%;padding-top:50px;text-align: center;} .common img{width:100px;height:100px;} .com{font-size:20px;color:#7d7c7f;/*font-weight:bold;*/padding-top:20px;} .m-middle{font-size:22px;color:#e19796;font-weight:bold;padding-top:50px;font-style: italic;text-align: center;padding-bottom:50px;} .clear{clear:both;} .m-bottom{margin-bottom:20px;} .m-com{float: left;padding:10px;text-align: center;} .m-com img{width:310px;height:260px;} .des1{font-size:20px;color:#7d7d7f;padding-top:20px;} .des2{font-size:20px;color:#bdbdbc;padding-top:20px;} .bottom{background-color: #f9f9f9;padding-bottom:30px;} .bottom .content{width:1000px;margin:0 auto;} .content .title{text-align: center;font-size: 20px;color:#7d7c7f;padding:50px 0 30px 0;font-weight:bold;} .pic-content dl{width:470px;float: left;margin:10px 12px;} .pic-content dl img{width:470px;height:460px;} .pic-content dd{padding-top:15px;font-size: 16px;color:#7d7c7f;} footer{width:100%;height:100px;background-color: #292c35;color:#fff;font-size: 15px;text-align: center;line-height:100px;}
    </style>
</head>
<body>
    <header>
        <div class="logo"><img src="img/logo.png" alt="logo"></div>
        <div class="nav">
            <ul>
                <li>首頁</li>
                <li>圖片</li>
                <li>視頻</li>
                <li>手記</li>
            </ul>
        </div>
    </header>
    <div class="main">
        <div class="top">
            <img src="img/1.jpeg" alt="1">
        </div>
        <div class="topLayer"></div>
        <div class="topLayer-top">
            <div class="word">MY BEAUTIFUL LIFE</div>
            <button>LOOK MORE &gt;</button>    
        </div>
        <div class="middle">
            <div class="m-top">
                <div class="common weixin">
                    <img src="img/weixin.png" alt="weixin">
                    <div class="com">WECHAT</div>
                </div>
                <div class="common weibo">
                    <img src="img/weibo.png" alt="weibo">
                    <div class="com">MICROBLOG</div>
                </div>
                <div class="common qq">
                    <img src="img/qq.png" alt="qq">
                    <div class="com">QQ</div>
                </div>
                <div class="clear"></div>
            </div>
            <div class="m-middle"> "I want to give good things to record down,<br>after the recall will be very beautiful." </div>
            <div class="m-bottom">
                <div class="m-com">
                    <img src="img/03-01.jpg" alt="">
                    <div class="des1">Cool Image</div>
                    <div Class="des2">Record The Picture</div>
                </div>
                <div class="m-com">
                    <img src="img/03-02.jpg" alt="">
                    <div class="des1">Great Picture</div>
                    <div class="des2">Record The Picture</div>
                </div>
                <div class="m-com">
                    <img src="img/03-03.jpg" alt="">
                    <div class="des1">Cool Image</div>
                    <div class="des2">Record The Picture</div>
                </div>
                <div class="clear"></div>
            </div>
        </div>
        <div class="bottom">
            <div class="content">
                <div class="title">FROM THE PHOTO ALBUM</div>
                <div class="pic-content">
                    <dl>
                        <dt><img src="img/04-01.jpg"></dt>
                        <dd>Life is like a book, just read more and more refined, more write more carefully. When read, mind open, all things have been indifferent to heart. Life is the precipitation.</dd>
                    </dl>
                    <dl>
                        <dt><img src="img/04-02.jpg"></dt>
                        <dd>Life is like a cup of tea, let people lead a person to endless aftertastes. You again good taste, it will always have a different taste, different people will have different taste more.</dd>
                    </dl>
                    <div class="clear"></div>
                </div>
            </div>
        </div>
    </div>
    <footer>
        &copy; 2019 test.com 備案號xxxxxxxx號 </footer>
</body>
</html>

關于“css網頁布局案例分析”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“css網頁布局案例分析”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

css
AI

新竹县| 驻马店市| 新密市| 蓝山县| 高要市| 临夏市| 大冶市| 和林格尔县| 益阳市| 怀柔区| 万载县| 屯门区| 岳池县| 额敏县| 丹阳市| 麻江县| 鄯善县| 镶黄旗| 杂多县| 宣恩县| 教育| 太原市| 丰原市| 博客| 敦煌市| 蒲城县| 西城区| 保山市| 延长县| 通城县| 鄂托克前旗| 鄂尔多斯市| 若羌县| 灵台县| 炎陵县| 邢台县| 洛南县| 襄汾县| 正安县| 新泰市| 革吉县|