第四周学习

position定位

position特性:
CSS position属性用于指定一个元素在文档中的定位方式。top、right、bottom、left属性则决定了该元素的最终位置。
position取值
static(默认)
relation
absolute
fixed
sticky
1、relation定位
如果没有定位偏移量,对元素本身没有任何影响
不使元素脱离文档流
不影响其他元素布局
top、right、bottom、left是相对与当前元素自身进行偏移的。

<style>
        #box1{width: 100px;height: 100px; background-color: red;}
        #box2{width: 100px;height: 100px; background-color: blue; position: relative;left: 100px;top: 100px;}
        #box3{width: 100px;height: 100px; background-color: green;}
    </style>
<body>
    <div id="box1"></div>
    <div id="box2"></div>
    <div id="box3"></div>
</body>

2、absolute定位
(1)、使元素完全脱离文档流

<style>
        #box1{width: 100px;height: 100px; background-color: red; position: absolute;}
        #box2{width: 200px;height: 200px; background-color: blue;}
    </style>
<body>
    <div id="box1"></div>
    <div id="box2"></div>
</body>

(2)、使内联元素支持宽高(让内联具备块特性)

<style>
        span{width: 100px;height: 100px;background-color: red;position: absolute;}
    </style>
<body>
    <span>内联</span>
</body>

(3)、使块元素默认宽根据内容决定(让块具备内联特性)

<style>
        #box1{width: 100px; background-color: red; position: absolute;}
    </style>
<body>
    <div id="box1">这是一个块</div>
</body>

(4)、如果有定位祖先元素则相对于定位的祖先元素发生偏移,如果没有定位祖先元素则相对于整个文档发生偏移(绝对、相对、固定)

<style>
        #box1{width: 300px;height: 300px; border:1px black solid ; margin: 200px; position: relative;}
        #box2{width: 100px;height: 100px; background-color: blue; position: absolute;left: 100px;bottom: 100px ;} 
    </style>
<body>
    <div id="box1">
        <div id="box2"></div>
    </div>
</body>

3、fixed定位、sticky定位、z-index定位层级
(1)、fixed定位
使元素完全脱离文档流
使内联元素支持宽高(让内联具备块特性)
使块元素默认宽根据内容决定(让块具备内联特性)
相对于整个浏览器窗口进行偏移,不受浏览器滚动条的影响。

<style>
        body{height: 2000px;}
        div{position: fixed;}
    </style>
<body>
    <div>这是一个块</div>
</body>

(2)、sticky粘性定位
在指定的位置,进行粘性操作。

<style>
        body{height: 2000px;}
        div{position: sticky;top: 50px;}
    </style>
<body>
    <div>这是一个块</div>
</body>

(3)、z-index定位层级
默认层级为0
嵌套时候的层级问题

 <style>
        #box1{width: 100px;height: 100px; border:1px black solid ; position: absolute;z-index: 0;}
        #box2{width: 100px;height: 100px; background-color: blue; position: absolute;z-index: 0;} 
        #box3{width: 100px;height: 100px;margin: 50px; background-color: red; position: absolute;z-index: 1;} 
    </style>
<body>
    <div id="box1">
        <div id="box2"></div>
    </div>
    <div id="box3"></div> 
</body>

(4)、练习
定位的下拉菜单

 <style>
        *{margin: 0;padding: 0;font-size: 16px;}
        ul{list-style: none;}
        #menu{width: 100px;height: 20px;margin: 20px auto; border: 1px black solid;position: relative;}
        #menu ul{width: 100px;border: 1px black solid;position: absolute;left: -1px;top: 20px;background-color: white;display: none;}
        #menu:hover ul{display: block;}
        #menu ul li:hover{background: gray;}
        p{text-align: center;}
    </style>
</head>
<body>
    <div id="menu">
        卖家中心
        <ul>
            <li>列表项1</li>
            <li>列表项2</li>
            <li>列表项3</li>
            <li>列表项4</li>
        </ul>
    </div>
    <p>测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落测试段落</p>
</body>

定位实现元素居中

<style>
        #box1{width: 300px;height: 300px;border: 1px black solid;position: relative;}
        #box2{width: 100px;height: 100px;background: red;position: absolute;left: 50%;top: 50%;margin: -50px 0 0 -50px;}
    </style>
</head>
<body>
    <div id="box1">
        <div id="box2"></div>
    </div>
</body>

css

1.添加省略号
width
必须有一个固定的宽
white-space:nowrap
不让内容折行
overflow:hidden
隐藏溢出的内容
text-overflow:ellipsis
添加省略号

<style>
        #content{width: 200px;border: 1px black solid;white-space: nowrap;overflow: hidden;     text-overflow: ellipsis;}
    </style>
</head>
<body>
    <div id="content">测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字测试文字</div>
</body>

2、css精灵及好处
特性
CSS雪碧也叫做CSS精灵,是一种网页图片应用处理方式。它允许你将一个页面涉及到的所有零星图片都包含到一张大图中去加载。
好处
可以减少图片的质量,网页的图片加载速度快
减少图片的请求的次数,加快网页的打开

#box{width: auto;height: auto;background: url(./)no-repeat left -50px;}

3、圆角

<style>
        #div1{width: 200px;  height: 200px;background: red;border-radius: 100px;}
        #div2{width: 200px;  height: 200px;background: red;border-radius: 50%;}
        #div3{width: 200px;  height: 200px;background: red;border-radius: 10px 20px;}
        /* 10px对应左上和右下,20px对应左下和右上 */
        #div4{width: 200px;  height: 200px;background: red;border-radius: 10px 20px 30px 40px;}
        /* 左上、右上、右下、左下(顺时针) */
        #div5{width: 200px;  height: 200px;background: red;border-radius: 20px /40px;}
        #div6{width: 200px;  height: 100px;background: red;border-radius: 100px 100px 0 0 }
        /* 半圆 */
    </style>
</head>
<body>
    <div id="div6"></div>
</body>

PC端企业类型整页制作

1、布局
通栏:自适应浏览器的宽度。
版心:固定一个宽度,并且让容器居中

*{margin: 0px;padding: 0px;}
ul,ol{list-style: none;}
img{display: block;}
a{text-decoration: none;color: #646464;}
h1,h2,h3{font-size: 16px;}
body{font-family: Arial;}

.l{float: left;}
.r{float: right;}
.clear::after{content: "";display: block;clear: both;}
.container{width: 1630px;margin: 0 auto;position: relative;}
.container-fluid{width: 100%;}

#head{height: 126px;}
#head .head_logo{width: 240px;height: 62px;margin-top: 32px;}
#head .head_menu{font-size: 14px; line-height: 126px;}
#head .head_menu li{float: left;margin-left: 86px;}

.area_title{margin-top:90px ;text-align: center;}
.area_title h2{height: 28px;line-height: 28px;font-size: 20px;color: #363636;background: url(../11月13日-11月18日练习所需图片文件/练习所需图片文件/images/title_bg.png) no-repeat center 10px;font-weight: normal;}
.area_title p{color: #9F9F9F;font-size: 16px;line-height: 40px;}


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./css/common.css">
    <style>
        #banner{position: relative;}
        #banner .banner_list{width: 100%;height: 694px;position: relative;}
        #banner .banner_list li{width: 100%;height: 100%;background: center 0 no-repeat;position: absolute;left: 0;top: 0;opacity: 0;z-index: 1;}
        #banner .banner_list li.active{opacity: 1;z-index: 10;}
        #banner .banner_list a{display: block;width: 100%;height: 100%;}
        #banner .banner_btn{width: 100%;position: absolute;bottom: 30px;z-index: 20;font-size: 0;text-align: center;}
        #banner .banner_btn li{display: inline-block;width: 18px;height: 18px;border: 3px white solid;border-radius: 50%;box-sizing: border-box;margin: 0 9px;cursor: pointer;}
        #banner .banner_btn li.active{background: white;}

        #service{overflow: hidden;min-height: 607px;}
        #service .service_list{text-align: center;margin-top: 133px;}
        #service .service_list li{float: left;margin: 0 56px;width: 295px;}
        #service .service_list div{width: 102px;height: 102px;margin: 0 auto;}
        #service .service_list li:nth-of-type(1) div{background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/web1.png);}
        #service .service_list li:nth-of-type(2) div{background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/graphic1.png);}
        #service .service_list li:nth-of-type(3) div{background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/e-bussiness1.png);}
        #service .service_list li:nth-of-type(4) div{background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/mail1.png);}
        #service .service_list h3{font-size: 18px;color: #434343;line-height: 36px;margin-top: 25px;}
        #service .service_list p{font-size: 14px;color: #6D6D6D;line-height: 22px;}

        #case{background: #f8f8f8;}
        #case .container{min-height: 675px;overflow: hidden;}
        #case .area_title{margin-top: 81px;}
        #case .area_title h2{color: rgb(127, 202, 184);}
        #case .case_list{margin-top: 50px;}
        #case .case_list li{float: left;margin: 0 20px;}
        #case .case_btn{width: 262px;height: 55px;background: rgb(102, 197, 180);margin: 0 auto;border-radius: 25px;text-align: center;line-height: 55px;font-size: 20px;}
        #case .case_btn a{display: block;width: 100%;height: 100%;color: white;margin-top: 53px;}

        #news{height: 670px;overflow: hidden;}
        #news .area_title{margin-top: 98px;}
        #news dl{margin-top: 88px;}
        #news dt{width: 346px;height: 288px;}
        #news dd{width: 1284px;}
        #news .news_list{width: 100%;}
        #news .news_list li{width: 50%;height: 144px; float: left;}
        #news .news_data{width: 108px;border-right: 1px #888 solid;text-align: center;}
        #news .news_data i{color: rgb(102, 197, 180);font-size: 60px;display: block;}
        #news .news_data span{color: #999999;font-size: 24px;line-height: 40px;}
        #news .news_text{width: 400px;margin-left: 30px;}
        #news .news_text h3{font-size: 20px;}
        #news .news_text h3 a{color: #3f3f3f;}
        #news .news_text p{font-size: 16px; color: #a4a4a4;line-height: 21px;margin-top: 35px;}

        #foot{height: 77px;background: rgb(102, 197, 180);color: white;font-size: 20px;}
        #foot div{line-height: 77px;}
        #foot a{color: white;}
        #foot span{margin:0 20px;}

    </style>
</head>
<body>
    <div id="head" class="container">
        <div class="head_logo l">
            <a href="#">
                <img src="./11月13日-11月18日练习所需图片文件/练习所需图片文件/排版/logo.png" alt="博文尚美" title="博文尚美">
            </a>
        </div>
        <ul class="head_menu r">
            </li>
                <a href="#">HOME</a>
            <li>
                <a href="#">ABOUT</a>
            </li>
            <li>
                <a href="#">PROTFOLIO</a>
            </li>
            <li>
                <a href="#">SERVICE</a>
            </li>
            <li>
                <a href="#">NEWS</a>
            </li>
            <li>
                <a href="#">CONTACT</a>
            </li>
        </ul>
    </div>
    <div id="banner" class="container-fluid">
        <ul class="banner_list">
            <li class="active" style="background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/首页.png);">
                <a href="#"></a>
            </li>
            <li style="background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/首页.png);">
                <a href="#"></a>
            </li>
            <li style="background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/首页.png);">
                <a href="#"></a>
            </li>
            <li style="background-image: url(./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/首页.png);">
                <a href="#"></a>
            </li>
        </ul>
        <ol class="banner_btn">
            <li class="active"></li>
            <li></li>
            <li></li>
            <li></li>
        </ol>
    </div>
    <div id="service" class="container">
        <div class="area_title">
            <h2>服务范围</h2>
            <p>OUR SERVICES</p>
        </div>
        <ul class="service_list">
            <li>
                <div></div>
                <h3>1.WEB DESIGN</h3>
                <p>企业品牌网站设计/手机网站制作
                    <br>
                    动画网站创意设计
                </p>
            </li>
            <li>
                <div></div>
                <h3>2.GRAPHIC DESIGN</h3>
                <p>标志logo设计/产品宣传册设计
                    <br>
                    企业广告海报设计
                </p>
            </li>
            <li>
                <div></div>
                <h3>3.E-BUSINESS PLAN</h3>
                <p>淘宝/天猫装修设计及运营推广
                    <br>
                    企业微博、微信营销
                </p>
            </li>
            <li>
                <div></div>
                <h3>4.MAILBOXAGENTS</h3>
                <p>腾讯/网易企业邮箱品牌代理
                    <br>
                    个性化邮箱定制开发
                </p>
            </li>
        </ul>       
    </div>
    <div id="case" class="container-fluid">
        <div class="container">
            <div class="area_title">
                <h2>{ 客户案例 }</h2>
                <p>With the best professional technology,to design the best innovative web site.</p>
            </div>
            <ul class="case_list clear">
                <li>
                    <a href="#"><img src="./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/Snipaste_2022-11-17_20-21-02.png" alt=""></a>
                </li>
                <li>
                    <a href="#"><img src="./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/Snipaste_2022-11-17_20-25-24.png" alt=""></a>
                </li>
                <li>
                    <a href="#"><img src="./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/Snipaste_2022-11-17_20-26-07.png" alt=""></a>
                </li>
            </ul>
            <div class="case_btn">
                <a href="#">VIEW MORE</a>
            </div>
        </div>
    </div>
    <div id="news" class="container">
        <div class="area_title">
            <h2>最新资讯</h2>
            <p>THE LATEST NEWS</p>
        </div>
        <dl>
            <dt class="l">
                <img src="./11月13日-11月18日练习所需图片文件/练习所需图片文件/images/XS2.png" alt="">
            </dt>
            <dd class="l">
                <ul class="news_list">
                    <li>
                        <div class="news_data l">
                            <i>09</i>
                            <span>Jan</span>
                        </div>
                        <div class="news_text l">
                            <h3><a href="#">网站排名进入前三的技巧说明</a></h3>
                            <p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站优化...</p>
                        </div>
                    </li>
                    <li>
                        <div class="news_data l">
                            <i>09</i>
                            <span>Jan</span>
                        </div>
                        <div class="news_text l">
                            <h3><a href="#">网站排名进入前三的技巧说明</a></h3>
                            <p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站优化...</p>
                        </div>
                    </li>
                    <li>
                        <div class="news_data l">
                            <i>09</i>
                            <span>Jan</span>
                        </div>
                        <div class="news_text l">
                            <h3><a href="#">网站排名进入前三的技巧说明</a></h3>
                            <p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站优化...</p>
                        </div>
                    </li>
                    <li>
                        <div class="news_data l">
                            <i>09</i>
                            <span>Jan</span>
                        </div>
                        <div class="news_text l">
                            <h3><a href="#">网站排名进入前三的技巧说明</a></h3>
                            <p>很多客户都会纳闷为什么自己的网站老是优化不到搜索引擎首页,更不用说首页前三了。那么网站优化...</p>
                        </div>
                    </li>
                </ul>
            </dd>
        </dl>
    </div>
    <div id="foot" class="container-fluid">
        <div class="container">
            <p class="l">Copyriight 2006-2014 Bowenshangmei Culture All Rights Reserved</p>
            <div class="r">
                    <a href="#">HOME</a><span> |</span>
                    <a href="#">ABOUT</a><span> |</span>
                    <a href="#">PROTFOLIO</a><span> |</span>
                    <a href="#">CONTACT</a>
            </div>
        </div>
    </div>
</body>
</html>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值