当前位置: 首页 > news >正文

温州做网站多少钱百度链接提交入口

温州做网站多少钱,百度链接提交入口,WordPress连接符,课程网站设计建设文章目录 前言第四题第五题第六题第七题第八题第九题第十题#xff08;子标签#xff09; 前言 昨天写了前面三次作业#xff0c;今天把剩下的七个作业写完 第四题 http://127.0.0.1:5500/index1.html#xff0c;就用这个网址查看代码在网页的展示效果 代码评测过不了子标签 前言 昨天写了前面三次作业今天把剩下的七个作业写完 第四题 http://127.0.0.1:5500/index1.html就用这个网址查看代码在网页的展示效果 代码评测过不了但是代码没有问题试了好几个浏览器也尝试了手机端不管了 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestylediv {width: 300px;height: 300px;}div:nth-child(1) {border-width: 10px;border-style: solid dotted inset dashed;border-color: blue red blue red;border-radius: 50%;}div:nth-child(2) {border: solid 3px black;border-radius: 10px;}/style /headbodydiv/divdiv/div /body/html第五题 修改之前的网页 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyle.container {display: block;width: 500px;height: 500px;padding: 10px;margin: 20px;background-color: lightblue;}.inline-block-div {display: inline-block;width: 100px;height: 100px;padding: 10px;margin: 10px;background-color: blue;color: white;}span {display: inline;padding-left: 10px;padding-right: 10px;margin-left: 20px;margin-right: 20px;background-color: bisque;color: green;}.block-div {display: block;width: 100px;height: 100px;padding: 10px;margin: 10px;background-color: blue;color: white;overflow: hidden;text-overflow: ellipsis;}/style /headbodydiv classcontainerdiv classinline-block-divdiv-1/divdiv classinline-block-divdiv-2/divdiv classinline-block-divdiv-3/divbrspanspan-1/spanspanspan-2/spanspanspan-3/spanbrdiv classblock-div123456789101112/div/div /body/html第六题 修改之前 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestylediv {width: 100px;height: 100px;background-color: lightsalmon;}div:nth-child(1) {padding: 10px 20px 30px 40px;margin: 10px 20px 30px 40px;}div:nth-child(2) {margin: 0 auto;}/style /headbodydiv文本1/divdiv文本2/div /body/html第七题 修改之前 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestylediv {width: 300px;height: 300px;padding: 10px;margin: 10px;background-color: lightblue;border: solid 10px gray;}div:nth-child(1) {box-sizing: content-box;}div:nth-child(2) {box-sizing: border-box;}/style /headbodydiv1/divdiv2/div /body/html第八题 修改之前效果 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestylebody {height: 2000px;margin: 0;}div {width: 200px;height: 200px;background-color: lightblue;margin: 20px;}div:nth-child(1) {position: static;}div:nth-child(2) {position: relative;left: 50px;top: 15px;}div:nth-child(3) {position: absolute;background-color: rgba(0, 0, 255, 0.5);left: 30px;top: 30px;}div:nth-child(4) {position: fixed;background-color: rgba(0, 255, 0, 0.5);left: 100px;top: 250px;}div:nth-child(10) {position: sticky;background-color: rgba(255, 0, 0, 0.5);bottom: 10px;}/style /headbodydiv1/divdiv2/divdiv3/divdiv4/divdiv5/divdiv6/divdiv7/divdiv8/divdiv9/divdiv10/div /body/html修改之后 第九题 修改之前 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyle.container {width: 500px;height: 500px;background-color: lightblue;}.item {width: 100px;height: 100px;margin: 10px;background-color: lightcoral;float: left;}.next-line {width: 150px;height: 150px;background-color: rgba(0, 0, 255, 0.5);clear: left;}/style /headbodydiv classcontainerdiv classitem/divdiv classitem/divdiv classitem/divdiv classitem/divdiv classitem/divdiv classnext-line/div/div /body/html修改之后的样式 第十题子标签 修改之前的样式 !DOCTYPE html html langenheadmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlestyle.container {display: flex;width: 50%;height: 500px;background-color: lightblue;margin: 10px;}.containerdiv {width: 120px;height: 120px;}.containerdiv:nth-child(odd) {background-color: lightsalmon;}.containerdiv:nth-child(even) {background-color: lightgreen;}.container:nth-child(1) {flex-wrap: wrap;justify-content: space-between;align-content: flex-start;}.container:nth-child(2) {flex-direction: row-reverse;flex-wrap: nowrap;}.container:nth-child(2)div:nth-child(odd) {flex-grow: 3;flex-shrink: 3;}.container:nth-child(2)div:nth-child(even) {flex-grow: 1;flex-shrink: 1;}/style /headbodydiv classcontainerdiv1/divdiv2/divdiv3/divdiv4/divdiv5/divdiv6/div/divdiv classcontainerdiv1/divdiv2/divdiv3/divdiv4/divdiv5/divdiv6/div/div /body/html修改之后的样式
http://www.hkea.cn/news/14354444/

相关文章:

  • 快速建站公司地址wordpress入站密码
  • 永康高端网站建设html5网站基础
  • 安徽省住房城乡建设部网站福州市住房和城乡建设部网站
  • 北京做网站浩森宇特江苏嘉力电力建设有限公司网站
  • ps做专业网站杭州有什么互联网大厂
  • 网站和网页wordpress做x站主题
  • 泉州住房城乡建设局网站网站新增一个域名备案
  • 唐山彩钢中企动力提供网站建设定制网站建设流程
  • 网站板块设置律师在线咨询
  • 眉山网站建设公司qq空间wordpress
  • 培训教材网站建设wordpress 商务
  • 网站建设 业务员提成网站流量统计系统
  • 建设执业注册中心网站昆明网站建设-中国互联
  • 长沙网站排名方法tq网站建设
  • 网站建设与管理设计wordpress教程文档
  • 新闻类网站开发多久山东建设厅网站首页
  • 建网站空间购买做网站后期要收维护费吗
  • 太原网站排名外包wordpress中view不见了
  • 司法局网站建设网站建设每年需要交多少钱
  • 网站备案实名认证网站后台html编辑器
  • 百度seo网站在线诊断网络广告推广策划书
  • 网站开发英文参考文献win8metro ui风格的wordpress
  • 煤炭建设协会官方网站2023房地产最新消息
  • 做建筑设计网站青岛商城网站开发
  • 蓝海基业做的网站好吗wordpress外贸企业主题
  • 新网站2个月没有收录建立网络专题网站架构
  • 鹤壁集团网站建设班级网站建设图片
  • 网站建设类型有哪些方面网站对位
  • 南阳河南网站建设网站建设中 敬请期待.
  • 邢台建网站找谁备案过的网站换空间