欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML连载54-网易注册界面实战之信息填写

程序员文章站 2022-11-07 16:39:58
一、完成了内容中的右边的一部分。练习了三点:小盒子在大盒子中的位置,最好用大盒子的内边距完成布局,而不是用小盒子的外边距来进行布局;复习了ul,li的用法。 D ......</div> <div class="content"> <p class="msonormal">一、完成了内容中的右边的一部分。练习了三点:小盒子在大盒子中的位置,最好用大盒子的内边距完成布局,而不是用小盒子的外边距来进行布局;复习了<span lang="en-us">ul,li</span>的用法。</p> <div class="cnblogs_code"> <pre class="brush: css;"> <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>d139_frameworkeofneteasyinterface</title> <style> .header{ width:960px; height:80px; /*background-color: red;*/ margin: 0 auto; overflow: hidden; padding-top:14px; box-sizing: border-box;/*这里我们采用内上边距的办法将logo挤下去达到垂直居中的目的*/ /*同时这个box-sizing的属性就是将这个header固定住,不让他因为内边距而变化大小了*/ } .content{ width: 960px; height: 600px; background-color: blue; margin: 0 auto; ​ } .footer{ width: 960px; height: 48px; background-color: yellow; margin: 0 auto ; } .header .logo{ width:748px; height: 47px; background:url("image/neteasylogo.jpg") no-repeat 0 0;/*从图片的坐标(0,0)开始铺,no-repeat就是只铺这一张不要多铺*/ /*margin-top: 12px;*/ float:left; } .header .links{ height: 42px; width: 150px; /*background-color: red;*/ float:right; } .header .logo a { width:156px; height:45px;/*测量出那一块区域,然后这一块区域都是超级链接*/ /*background-color: red;*/ display: inline-block;/*转换为行内块级标签*/ } .header .links a{ text-decoration:none;/*去掉下划线*/ font-size: 16px; color:black; line-height: 45px;/*这里复习了文字不能居中,使用这个属性让它和links盒子的高度一致,那就做到文字在盒子中居中*/ text-align: right;/*复习了文字右对齐*/ } .content{ width: 960px; height: 600px; ​ } .content .top{ width: 960px; height: 38px; /*background-color: red;*/ background: url("image/wangyi_center.jpg") 0 0;/*让这张小图片把top这个区域全部铺满*/ } .content .bottom{ width: 960px; height: 562px; /*background-color: green;*/ } /*下面这两个属性设置,就是为了content的top部的两边能使用我们指定的格式,我们采用的盒子嵌套盒子来进行背景的演示*/ .content .top .left{ width:960px; height: 38px; background:url("image/line_left.jpg") no-repeat left 0 ; /*display: inline;*/ } .content .top .left .right{ width:960px; height: 38px; background:url("image/line_left.jpg") no-repeat right 0 ; } .content .top .left .right h3{ color: white; line-height:38px;/*设置行高就是为了让文字能够在top条中垂直居中*/ text-align: center;/*文字水平居中,当然我们也可以设置margin-left来设置左边距,但是一旦分辨率改变将导致网页变形*/ } .content .bottom .article{ width:638px; height: 562px; background-color: red; float:left;/*这里填写了这个float属性才行,并且右面的盒子也需要float属性,div是行内标签,不写float会另起一行*/ box-sizing: border-box;/*这个设置是为了让外面的大盒子不会因为设置内边距,而导致外面的的大盒子变形*/ padding-top:50px;/*这里我们设置了内边距,那么里面的内容就可以从这里面进行配置了,一开始我想到的是不设置这个内边距*/ /*让里面的东西有外边距,当然这样也可以达到效果,但是有一个缺点,里面的每一个盒子都要单独设置外边距,相比设置*/ /*外面盒子的内边距会更加省力,而且里面的内容,自然而然就会对齐*/ padding-left: 80px; } .content .bottom .aside{ width: 320px;/*这里我们本来写的322,但是发现写上322就会造成aside这个图片溢出到下面了,原来是左边距有2px.这样*/ /*320+2+638=960就正好了,溢出原因就是float属性导致的,达到了962,就装不下了*/ height: 562px; /*background-color: green;*/ background:url("image/content_aside.jpg") no-repeat 0; float:right; border-left:2px black solid; } .content .article .articletop{ width: 560px; height: 60px; /*background-color: yellow;*/ ​ } .content .article .articletop ul{ width: 511px; height: 34px; /*background-color: tomato;*/ list-style:none;/*这个属性是为了去掉li的小圆点*/ ​ } .content .article .articletop ul li{ float:left; width: 137px; height: 34px; /*background-color: skyblue;*/ line-height: 37px; text-align: center;/*文字水平居中*/ background:url("image/content_article.jpg") 0 0; border:1px solid black; } .content .article .articlebottom{ width: 560px; height: 373px; background-color: white; } .content .article .articlebottom .line{ width: 413px; height: 28px; background-color: yellow; } .content .article .articlebottom .line span{ float:left; height: 28px; width: 60px; font-size:12px; line-height:28px; text-align:left; } .content .article .articlebottom .line .star{ width: 6px; float:left; } .content .article .artilclebottom .line div{ float: left; height: 28px; height: 333px; } </style> </head> <body> <div class="header"> <div class="logo" > <a href="https://www.163.com/" title="网易163免费邮箱"></a><a href="https://www.126.com/" title="网易126免费邮箱"></a><a href="#" title="网易yeah免费邮箱"></a> <!--复习了a标签的使用,title就是指鼠标放到超链接上就会显示的文字--> </div> <div class="links"> <a href="http://www.baidu.com">了解更多</a>|<a href="#">反馈意见</a> </div> </div> <div class="content"> <div class="top"> <div class="left"> <div class="right"><h3>欢迎注册无限容量的网易邮箱!邮件地址可以登录使用其他网易旗下的产品</h3></div> </div> </div> <div class="bottom"> <div class="article"> <div class="articletop"> <ul> <li>注册字母邮箱</li><!--看到导航条就应该想到ul.li--> <li>注册手机号邮箱</li> <li>注册vip邮箱</li> </ul> </div> <div class="articlebottom"> <div class="line"> <span class="star">*</span><!--这里的星号代表必填项--><span>邮箱地址</span> <div></div> </div> </div> </div> <div class="aside"></div> </div> </div> <div class="footer"></div> </body> </html></pre> </div> <p> </p> <p class="msonormal"><span lang="en-us"> <img onerror="this.src='/statics/superweb999/images/image_error.jpg'"src="/default/index/img?u=aHR0cDovL2ltYWdlczQuMTBxaWFud2FuLmNvbS8xMHFpYW53YW4vMjAxOTEyMDEvYl8wXzIwMTkxMjAxMTUwNzUwODIzNC5qcGc=" alt="HTML连载54-网易注册界面实战之信息填写" title="HTML连载54-网易注册界面实战之信息填写"></span></p> <p class="msonormal"> </p> <p class="msonormal">三、源码:</p> <p class="msonormal"><span lang="en-us">d139_frameworkeofneteasyinterface.html</span></p> <p class="msonormal">地址<span lang="en-us">:</span></p> <p class="msonormal"><span lang="en-us">https://github.com/ruigege66/html_learning/blob/master/d139_frameworkeofneteasyinterface.html</span></p> <p class="msonormal"><span lang="en-us">2.csdn</span>:<span lang="en-us">https://blog.csdn.net/weixin_44630050</span>(心悦君兮君不知<span lang="en-us">-</span>睿)</p> <p class="msonormal"><span lang="en-us">3.</span>博客园:<span lang="en-us">https://www.cnblogs.com/ruigege0000/</span></p> <p class="msonormal"><span lang="en-us">4.</span>欢迎关注微信公众号:傅里叶变换,个人账号,仅用于技术交流,后台回复<span lang="en-us">“</span>礼包<span lang="en-us">”</span>获取<span lang="en-us">java</span>大数据学习视频礼包</p> <p> </p> <p class="msonormal"><span lang="en-us"> <img onerror="this.src='/statics/superweb999/images/image_error.jpg'"src="/default/index/img?u=aHR0cDovL2ltYWdlczQuMTBxaWFud2FuLmNvbS8xMHFpYW53YW4vMjAxOTA2MjUvYl8wXzIwMTkwNjI1MTYzMzQzMzQ1Mi5qcGc=" alt="HTML连载54-网易注册界面实战之信息填写" title="HTML连载54-网易注册界面实战之信息填写"></span></p> <p style="margin: 0px; padding: 0px; clear: both;">一、完成了内容中的右边的一部分。练习了三点:小盒子在大盒子中的位置,最好用大盒子的内边距完成布局,而不是用小盒子的外边距来进行布局;复习了ul,li的用法。</p> <pre class="brush: css;"><!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>d139_frameworkeofneteasyinterface</title> <style> .header{ width:960px; height:80px; /*background-color: red;*/ margin: 0 auto; overflow: hidden; padding-top:14px; box-sizing: border-box;/*这里我们采用内上边距的办法将logo挤下去达到垂直居中的目的*/ /*同时这个box-sizing的属性就是将这个header固定住,不让他因为内边距而变化大小了*/ } .content{ width: 960px; height: 600px; background-color: blue; margin: 0 auto;​ } .footer{ width: 960px; height: 48px; background-color: yellow; margin: 0 auto ; } .header .logo{ width:748px; height: 47px; background:url("image/neteasylogo.jpg") no-repeat 0 0;/*从图片的坐标(0,0)开始铺,no-repeat就是只铺这一张不要多铺*/ /*margin-top: 12px;*/ float:left; } .header .links{ height: 42px; width: 150px; /*background-color: red;*/ float:right; } .header .logo a { width:156px; height:45px;/*测量出那一块区域,然后这一块区域都是超级链接*/ /*background-color: red;*/ display: inline-block;/*转换为行内块级标签*/ } .header .links a{ text-decoration:none;/*去掉下划线*/ font-size: 16px; color:black; line-height: 45px;/*这里复习了文字不能居中,使用这个属性让它和links盒子的高度一致,那就做到文字在盒子中居中*/ text-align: right;/*复习了文字右对齐*/ } .content{ width: 960px; height: 600px;​ } .content .top{ width: 960px; height: 38px; /*background-color: red;*/ background: url("image/wangyi_center.jpg") 0 0;/*让这张小图片把top这个区域全部铺满*/ } .content .bottom{ width: 960px; height: 562px; /*background-color: green;*/ } /*下面这两个属性设置,就是为了content的top部的两边能使用我们指定的格式,我们采用的盒子嵌套盒子来进行背景的演示*/ .content .top .left{ width:960px; height: 38px; background:url("image/line_left.jpg") no-repeat left 0 ; /*display: inline;*/ } .content .top .left .right{ width:960px; height: 38px; background:url("image/line_left.jpg") no-repeat right 0 ; } .content .top .left .right h3{ color: white; line-height:38px;/*设置行高就是为了让文字能够在top条中垂直居中*/ text-align: center;/*文字水平居中,当然我们也可以设置margin-left来设置左边距,但是一旦分辨率改变将导致网页变形*/ } .content .bottom .article{ width:638px; height: 562px; background-color: red; float:left;/*这里填写了这个float属性才行,并且右面的盒子也需要float属性,div是行内标签,不写float会另起一行*/ box-sizing: border-box;/*这个设置是为了让外面的大盒子不会因为设置内边距,而导致外面的的大盒子变形*/ padding-top:50px;/*这里我们设置了内边距,那么里面的内容就可以从这里面进行配置了,一开始我想到的是不设置这个内边距*/ /*让里面的东西有外边距,当然这样也可以达到效果,但是有一个缺点,里面的每一个盒子都要单独设置外边距,相比设置*/ /*外面盒子的内边距会更加省力,而且里面的内容,自然而然就会对齐*/ padding-left: 80px; } .content .bottom .aside{ width: 320px;/*这里我们本来写的322,但是发现写上322就会造成aside这个图片溢出到下面了,原来是左边距有2px.这样*/ /*320+2+638=960就正好了,溢出原因就是float属性导致的,达到了962,就装不下了*/ height: 562px; /*background-color: green;*/ background:url("image/content_aside.jpg") no-repeat 0; float:right; border-left:2px black solid; } .content .article .articletop{ width: 560px; height: 60px; /*background-color: yellow;*/​ } .content .article .articletop ul{ width: 511px; height: 34px; /*background-color: tomato;*/ list-style:none;/*这个属性是为了去掉li的小圆点*/​ } .content .article .articletop ul li{ float:left; width: 137px; height: 34px; /*background-color: skyblue;*/ line-height: 37px; text-align: center;/*文字水平居中*/ background:url("image/content_article.jpg") 0 0; border:1px solid black; } .content .article .articlebottom{ width: 560px; height: 373px; background-color: white; } .content .article .articlebottom .line{ width: 413px; height: 28px; background-color: yellow; } .content .article .articlebottom .line span{ float:left; height: 28px; width: 60px; font-size:12px; line-height:28px; text-align:left; } .content .article .articlebottom .line .star{ width: 6px; float:left; } .content .article .artilclebottom .line div{ float: left; height: 28px; height: 333px; }</style></head><body><div class="header"> <div class="logo" > <a href="https://www.163.com/" title="网易163免费邮箱"></a><a href="https://www.126.com/" title="网易126免费邮箱"></a><a href="#" title="网易yeah免费邮箱"></a> <!--复习了a标签的使用,title就是指鼠标放到超链接上就会显示的文字--> </div> <div class="links"> <a href="http://www.baidu.com">了解更多</a>|<a href="#">反馈意见</a> </div></div><div class="content"> <div class="top"> <div class="left"> <div class="right"><h3>欢迎注册无限容量的网易邮箱!邮件地址可以登录使用其他网易旗下的产品</h3></div> </div> </div> <div class="bottom"> <div class="article"> <div class="articletop"> <ul> <li>注册字母邮箱</li><!--看到导航条就应该想到ul.li--> <li>注册手机号邮箱</li> <li>注册vip邮箱</li> </ul> </div> <div class="articlebottom"> <div class="line"> <span class="star">*</span><!--这里的星号代表必填项--><span>邮箱地址</span> <div></div> </div> </div> </div> <div class="aside"></div> </div></div><div class="footer"></div></body></html></pre> <p style="margin: 0px; padding: 0px; clear: both; text-align: center;"><img onerror="this.src='/statics/superweb999/images/image_error.jpg'"class="rich_pages js_insertlocalimg" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important;" src="/default/index/img?u=aHR0cDovL2ltYWdlczQuMTBxaWFud2FuLmNvbS8xMHFpYW53YW4vMjAxOTEyMDEvYl8wXzIwMTkxMjAxMTUwNzUxMTgzNi5qcGc=" alt="HTML连载54-网易注册界面实战之信息填写" data-ratio="0.5671875" data-s="300,640" data-type="jpeg" data-w="1280" title="HTML连载54-网易注册界面实战之信息填写"></p> <p style="margin: 0px; padding: 0px; clear: both;"> </p> <p style="margin: 0px; padding: 0px; clear: both;"> </p> <p style="margin: 0px; padding: 0px; clear: both;">三、源码:</p> <p style="margin: 0px; padding: 0px; clear: both;">d139_frameworkeofneteasyinterface.html</p> <p style="margin: 0px; padding: 0px; clear: both;">地址:</p> <p style="margin: 0px; padding: 0px; clear: both;">https://github.com/ruigege66/html_learning/blob/master/d139_frameworkeofneteasyinterface.html</p> <p style="margin: 0px; padding: 0px; clear: both;">2.csdn:https://blog.csdn.net/weixin_44630050(心悦君兮君不知-睿)</p> <p style="margin: 0px; padding: 0px; clear: both;">3.博客园:https://www.cnblogs.com/ruigege0000/</p> <p style="margin: 0px; padding: 0px; clear: both;">4.欢迎关注微信公众号:傅里叶变换,个人账号,仅用于技术交流,后台回复“礼包”获取java大数据学习视频礼包</p> <p style="margin: 0px; padding: 0px; clear: both; text-align: center;"><img onerror="this.src='/statics/superweb999/images/image_error.jpg'"class="rich_pages js_insertlocalimg" style="margin: 0px; padding: 0px; max-width: 100%; height: auto !important;" src="/default/index/img?u=aHR0cDovL2ltYWdlczQuMTBxaWFud2FuLmNvbS8xMHFpYW53YW4vMjAxOTA3MDYvYl8wXzIwMTkwNzA2MDI0NDA5NzYxOC5qcGc=" alt="HTML连载54-网易注册界面实战之信息填写" data-s="300,640" data-ratio="1" data-w="430" data-type="jpeg" title="HTML连载54-网易注册界面实战之信息填写"></p> <p style="margin: 0px; padding: 0px; clear: both;"> </p> </div> <div class="info-pre-next"> <p> 上一篇: <a href="/article/1906958.html"> CSS中如何使用背景样式属性,看这篇文章就够用了 </a> </p> <p> 下一篇: <a href="/article/1906960.html"> Win11新版本出现问题!Edge浏览器无法启动 </a> </p> </div> <div class="wz_tuijian"> <p> 推荐阅读 </p> <ul> <li> <a href="/article/1906959.html" target="_blank" title="HTML连载54-网易注册界面实战之信息填写"> <h2> HTML连载54-网易注册界面实战之信息填写 </h2> </a> </li> <li> <a href="/article/1556929.html" target="_blank" title="HTML连载56-网易注册界面实战之全部代码"> <h2> HTML连载56-网易注册界面实战之全部代码 </h2> </a> </li> <li> <a href="/article/1407101.html" target="_blank" title="HTML连载55-网易注册界面实战之input填充"> <h2> HTML连载55-网易注册界面实战之input填充 </h2> </a> </li> <li> <a href="/article/921426.html" target="_blank" title="HTML连载54-网易注册界面实战之信息填写"> <h2> HTML连载54-网易注册界面实战之信息填写 </h2> </a> </li> <li> <a href="/article/603549.html" target="_blank" title="HTML连载56-网易注册界面实战之全部代码"> <h2> HTML连载56-网易注册界面实战之全部代码 </h2> </a> </li> <li> <a href="/article/46324.html" target="_blank" title="HTML连载55-网易注册界面实战之input填充"> <h2> HTML连载55-网易注册界面实战之input填充 </h2> </a> </li> </ul> </div> </article> </div> </main> <footer><div class="box"><div class="ft_nav"><div class="ft_about"><p>关于网站</p><ul><li><a href="/sitemap.xml" target="_blank" title="网站地图">网站地图</a></li><li><a href="/list/2/" title="最新程序员文章站">最新程序员文章站</a></li></ul></div><div class="ft_contact"><ul><li>本站所有数据收集于网络如有侵犯到您的权益,请联系我们进行下架处理。</li><li class="email_show"></li></ul></div></div><div class="copyright"><div class="cr_left"><p> 备案号:<a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">粤ICP备20058927号</a></p><p>© Copyright © 2020-2022 www.superweb999.com 程序员文章站. </p></div></div></div></footer> </body> </html>