【前端从入门到精通:第八课:CSS浮动布局实战】

EWSHOP布局实战

  • 目录结构
    /ewshop/
    |- index.html 首页
    |- css/ CSS目录
    |- global.css 全局样式
    |- index.css index.html文件样式
    |- img/ 图像资源目录
    |- font/字体图标目录

  • global.css

    主要作用:设置全局样式,清空默认样式 base.css,设置常用的基础类

<!--讲解案例-->
<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><title>EWshop</title><style>body,ul,ol,li,p,div,section{padding:0px;margin:0px;}ul,ol{border:1px solid red;}li{list-style:none;border:1px solid black;}a{text-decoration: none;}/*设置通用的颜色*/:root{--border-color:black;--bg-color:#ccc;--font-color:#666;}div{font-color:var(--font-color)}</style></head><body><div>我是你的优乐美</div><ul><li>aaaaa</li></ul><ol><li>bbbbb</li></ol></body>
</html>
  • iconfont字体图标

    地址:https://www.iconfont.cn/

  • Unicode在线图标使用方式

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><title>EWshop</title><style>/*font unicode方式 在线方式 只右针对自己生成的在线链接才管用*//*@font-face {*//*    font-family: 'iconfont';  !* Project id 3978920 *!*//*    src: url('https://at.alicdn.com/t/c/font_3978920_oewa1j06rbk.woff2?t=1679897692963') format('woff2'),*//*    url('https://at.alicdn.com/t/c/font_3978920_oewa1j06rbk.woff?t=1679897692963') format('woff'),*//*    url('https://at.alicdn.com/t/c/font_3978920_oewa1j06rbk.ttf?t=1679897692963') format('truetype');*//*}*//*只要右更新就需要从新加载*/@font-face {font-family: 'iconfont';  /* Project id 3978920 */src: url('https://at.alicdn.com/t/c/font_3978920_hr7ehafwe7d.woff2?t=1679897884734') format('woff2'),url('https://at.alicdn.com/t/c/font_3978920_hr7ehafwe7d.woff?t=1679897884734') format('woff'),url('https://at.alicdn.com/t/c/font_3978920_hr7ehafwe7d.ttf?t=1679897884734') format('truetype');}.iconfont{font-family:"iconfont" !important;font-size:16px;font-style:normal;-webkit-font-smoothing: antialiased;-webkit-text-stroke-width: 0.2px;-moz-osx-font-smoothing: grayscale;}</style></head><body><i class="iconfont">&#xe621;</i><i class="iconfont">&#xe600;</i></body>
</html>
  • fontClass在线图标使用方式
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><link rel="stylesheet" href="https://at.alicdn.com/t/c/font_3978920_hr7ehafwe7d.css">
</head>
<body><i class="iconfont icon-gouwuche"></i><i class="iconfont icon-MBEfenggeduosetubiao-gouwuche"></i>
</body>
</html>
  • Symbol在线图标使用方式
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><script src="https://at.alicdn.com/t/c/font_3978920_hr7ehafwe7d.js"></script><style>.icon {width: 1em; height: 1em;vertical-align: -0.15em;fill: currentColor;overflow: hidden;}</style>
</head>
<body><svg class="icon" aria-hidden="true"><use xlink:href="#icon-gouwuche"></use></svg><svg class="icon" aria-hidden="true"><use xlink:href="#icon-MBEfenggeduosetubiao-gouwuche"></use></svg>
</body>
</html>
  • 离线图标使用
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><style>@font-face {font-family: 'iconfont';src: url('./font/iconfont.woff2?t=1679898366337') format('woff2'),url('./font/iconfont.woff?t=1679898366337') format('woff'),url('./font/iconfont.ttf?t=1679898366337') format('truetype');}.iconfont {font-family: "iconfont" !important;font-size: 16px;font-style: normal;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}</style><script src=""></script>
</head>
<body>
<span class="iconfont">&#xe600;</span>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><title>Title</title><script src="./js/iconfont.js"></script><style>.icon {width: 1em;height: 1em;vertical-align: -0.15em;fill: currentColor;overflow: hidden;}</style>
</head>
<body>
<svg class="icon" aria-hidden="true"><use xlink:href="#icon-lanmu"></use>
</svg>
</body>
</html>
  • 布局实战

global.css文件内容

/*base.css*/
body,ul,li,ol,p,h3,a,div,section,form,input,textarea{margin:0px;padding:0px;
}
li{list-style:none;
}
a{text-decoration: none;color:black;
}
body{font-size:12px;
}
:root{--font-white:white;--bg-red:#E60012;--bgcolor-f5:#f5f5f5;--bgcolor-fc:#fcfcfc;--border-40:#404040;--border-d4:#d4d4d4;--border-ea:#eaeaea;--border-dd:#ddd;--font-red:red;--font-666:#666;--font-dddadb:#dddadb;--font-555:#555;--font-333:#333;
}

ewshop.css文件内容

/*设置公告样式样式*/
.fl{float:left;
}
.fr{float:right
}
.c{clear: both;
}/*宽度*/
.w-100{width:100%;
}
.w-980px{width: 980px;
}
/*高度*/
.h-100{height: 100%;
}
/*外间距*//*顶部*/
.mt-0{margin-top: 0px;
}
.mt-1{margin-top:5px;
}
.mt-2{margin-top:10px;
}
.mt-3{margin-top: 15px;
}
.mt-4{margin-top: 20px;
}
/*左侧*/
.ml-0{margin-left: 0px;
}
.ml-1{margin-left:5px;
}
.ml-2{margin-left: 10px;
}
.ml-3{margin-left: 15px;
}
.ml-4{margin-left: 20px;
}
/*底部*/
.mb-0{margin-bottom: 0px;
}
.mb-1{margin-bottom: 5px;
}
.mb-2{margin-bottom: 10px;
}
.mb-3{margin-bottom: 15px;
}
.mb-4{margin-bottom: 20px;
}
/*右侧外间距*/
.mr-0{margin-right: 0px;
}
.mr-1{margin-right: 5px;
}
.mr-2{margin-right: 10px;
}
.mr-3{margin-right: 15px;
}
.mr-4{margin-right: 20px;
}
/*水平方向外间距*/
.mx-0{margin-left:0px;margin-right:0px;
}
.mx-1{margin-left:5px;margin-right:5px;
}
.mx-2{margin-left:10px;margin-right:10px;
}
.mx-3{margin-left:15px;margin-right:15px;
}
.mx-4{margin-left:20px;margin-right:20px;
}
/*垂直方向外间距*/
.my-0{margin-top:0px;margin-bottom:0px;
}
.my-1{margin-top:5px;margin-bottom:5px;
}
.my-2{margin-top:10px;margin-bottom:10px;
}
.my-3{margin-top:15px;margin-bottom:15px;
}
.my-4{margin-top:20px;margin-bottom:20px;
}
/*块状元素居中*/
.m-auto{margin-left: auto;margin-right: auto;
}
/*同时设置四个方向外间距*/
.m-0{margin-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-right: 0px;
}
.m-1{margin-left: 5px;margin-top: 5px;margin-bottom: 5px;margin-right: 5px;
}
.m-2{margin-left: 10px;margin-top: 10px;margin-bottom: 10px;margin-right: 10px;
}
.m-3{margin-left: 15px;margin-top: 15px;margin-bottom: 15px;margin-right: 15px;
}
.m-4{margin-left: 20px;margin-top: 20px;margin-bottom: 20px;margin-right: 20px;
}
/*内间距*//*同时设置四个方向内间距*/
.p-0{padding-bottom: 0px;padding-left: 0px;padding-top: 0px;padding-right: 0px;
}
.p-1{padding-bottom: 5px;padding-left: 5px;padding-top: 5px;padding-right: 5px;
}
.p-2{padding-bottom: 10px;padding-left: 10px;padding-top: 10px;padding-right: 10px;
}
.p-3{padding-bottom: 15px;padding-left: 15px;padding-top: 15px;padding-right: 15px;
}
.p-4{padding-bottom: 20px;padding-left: 20px;padding-top: 20px;padding-right: 20px;
}
/*设置顶部内间距*/
.pt-0{padding-top: 0px;
}
.pt-1{padding-top: 5px;
}
.pt-2{padding-top: 10px;
}
.pt-3{padding-top: 15px;
}
.pt-4{padding-top: 20px;
}
/*设置左侧内间距*/
.pl-0{padding-left: 0px;
}
.pl-1{padding-left: 5px;
}
.pl-2{padding-left: 10px;
}
.pl-3{padding-left: 15px;
}
.pl-4{padding-left: 20px;
}
/*设置右侧内间距*/
.pr-0{padding-right: 0px;
}
.pr-1{padding-right: 5px;
}
.pr-2{padding-right: 10px;
}
.pr-3{padding-right: 15px;
}
.pr-4{padding-right: 20px;
}
/*设置底部内间距*/
.pb-0{padding-bottom: 0px;
}
.pb-1{padding-bottom: 5px;
}
.pb-2{padding-bottom: 10px;
}
.pb-3{padding-bottom: 15px;
}
.pb-4{padding-bottom: 20px;
}
/*设置垂直方向内间距*/
.py-0{padding-top: 0px;padding-bottom: 0px;
}
.py-1{padding-top: 5px;padding-bottom: 5px;
}
.py-2{padding-top: 10px;padding-bottom: 10px;
}
.py-3{padding-top: 15px;padding-bottom: 15px;
}
.py-4{padding-top: 20px;padding-bottom: 20px;
}
/*设置水平方向内间距*/
.px-0{padding-left: 0px;padding-right: 0px;
}
.px-1{padding-left: 5px;padding-right: 5px;
}
.px-2{padding-left: 10px;padding-right: 10px;
}
.px-3{padding-left: 15px;padding-right: 15px;
}
.px-4{padding-left: 20px;padding-right: 20px;
}
/*边框*/
.border{border:1px solid var(--border-40)
}
.border-top{border-top: 1px solid var(--border-40)
}
.border-bottom{border-bottom:1px solid var(--border-40);
}
.border-40{border-color: var(--border-40);
}
.border-d4{border-color: var(--border-d4);
}
.border-dd{border-color: var(--border-dd);
}
.border-ea{border-color: var(--border-ea);
}
.border-0{border:none;
}
/*设置怪异盒*/
.border-box{box-sizing: border-box;
}
/*超出内容隐藏*/
.overflow-hidden{overflow: hidden;
}
/*背景色*/
.bg-color-red{background: var(--bg-red);
}
.bg-color-f5{background:var(--bgcolor-f5);
}
.bg-color-fc{background: var(--bgcolor-fc);
}
/*字体色*/
.font-white{color:var(--font-white)
}
.font-red{color:var(--font-red)
}
.font-666{color:var(--font-666)
}
.font-dddadb{color: var(--font-dddadb);
}
.font-555{color:var(--font-555)
}
.font-333{color: var(--font-333);
}
/*字体大小*/
.font-12px{font-size:12px;
}
.font-14{font-size:14px;
}
.font-16{font-size:16px;
}
.font-weight-bold{font-weight: bold;
}
/*内容水平设置*/
.align-center{text-align:center;
}
.align-left{text-align: left;
}
.align-right{text-align: right;
}
  • index.css 文件内容
/*header style*/
.top_left{width: 200px;
}
.top_right{width: 310px;
}/*search style*/
.logo{width: 145px;
}
.search_form{/*border:1px solid red;*/width: 400px;margin-left: 80px;height: 50px;line-height: 50px;position: relative;
}
.search_form input[type=search]{width: 315px;box-sizing: border-box;height: 34px;border:2px solid #E60012;
}
.search_form input[type=submit]{width: 80px;height: 34px;border:none;box-sizing: border-box;background: #E60012;color: white;position: absolute;top:9px;
}
.phone{border-radius: 25px;
}
/*nav style*/
nav ul li{padding-left:5px;padding-top: 1px;background: url('../img/li_bg.gif') no-repeat right center;
}
nav ul li a{padding-left: 30px;padding-right: 30px;
}
nav ul li a:hover{background: #fff;color:#E60012;
}/*bargain style*/
.bargain_left{width:200px;height: 300px;
}
.bargain_left>div:first-child{background: url("../img/tb9.gif") no-repeat 8px center;padding-left: 30px;padding-top: 8px;padding-bottom: 8px;border-top:2px solid var(--border-40);border-left:1px solid var(--border-dd);border-bottom:1px solid var(--border-dd);border-right:1px solid var(--border-dd);
}
.bargain_left>div:last-child{width: 100%;height: 263px;border-left: 1px solid var(--border-dd);border-bottom: 1px solid var(--border-dd);border-right: 1px solid var(--border-dd);background: url('../img/tuijian_bg.gif') repeat-x bottom;/*background-size: 100%;*/
}
.bargain_goods{width: 100%;box-sizing: border-box;border-bottom: 1px dotted var(--border-dd);
}
.bargain_goods>img{height: 60px;border:1px solid var(--border-dd)
}
.bargain_goods>div{height: 60px;
}.bargain_center{width: 530px;height: 300px;
}
.bargain_right{width: 238px;height: 300px;box-sizing: border-box;
}
.bargain_right_top{padding:8px 0px;border-top-left-radius: 5px;border-top-right-radius: 5px;
}
.bargain_right_bottom{border:1px solid red;height: 265px;box-sizing: border-box;border-left: 1px solid var(--border-dd);border-right: 1px solid var(--border-dd);border-bottom: 1px solid var(--border-dd);
}
.bargain_right_bottom ul li{line-height: 30px;height: 30px;border-bottom: 1px #ddd dashed;list-style:url("../img/tb6.gif") inside;padding-left: 1px;
}
.bargain_right_bottom ul li a{color:#333;
}
.bargain_right_bottom ul li:hover a{color:orange;
}/*新品推荐 开始*/
.newGoods{height: 270px;background: url('../img/hy_rtt.gif') repeat-x;
}
.newGoods_title{background: url('../img/tb8.gif') no-repeat 10px center;padding-left: 30px;padding-top: 10px;padding-bottom: 10px;
}
.newGoods_goods{width: 100%;height: 231px;/*border:1px solid red;*/box-sizing: border-box;background: url("../img/tuijian_bg.gif") repeat-x bottom;
}
.newGoods_goods div{width: 195px;height: 225px;background: url("../img/tuijian_bg1.gif") no-repeat right;margin-top: 3px;border: 1px solid transparent;box-sizing: border-box;
}
.newGoods_goods div>div:hover{border:1px solid orange;box-sizing: border-box;
}
.newGoods_goods div>div{width:152px;height: 152px;
}
.newGoods_goods div>div>a>img{width: 100%;height: 100%;
}
.newGoods_goods div>p:nth-of-type(1){/*border:1px solid red;*/margin: 5px 0px;padding-left: 15px;
}
.newGoods_goods div>p:nth-of-type(1)>a{color: var(--font-555);
}
.newGoods_goods div>p:nth-of-type(2)>small{color:#888;text-decoration: line-through;
}
/*前端模块通用样式 */
.web{background: url('../img/hy_rtt.gif') repeat-x;
}
.web_title{background: url('../img/tb8.gif') no-repeat 10px center;padding-left: 30px;padding-top: 10px;padding-bottom: 10px;box-sizing: border-box;border-left:1px solid var(--border-dd);border-right:1px solid var(--border-dd)
}
.web_body{height: 459px;box-sizing: border-box;
}
.web_body_left{width: 734px;border-left:1px solid var(--border-dd);border-top:1px solid var(--border-dd);box-sizing: border-box;
}
.web_body_left>div{width: 183px;height: 229px;box-sizing: border-box;border-bottom: 1px solid var(--border-dd);border-right: 1px solid var(--border-dd);float: left;
}
.web_body_left>div>div:first-child{width: 150px;height: 150px;margin: 10px auto 8px auto;
}
.web_body_left>div>div:first-child>a>img{width: 100%;
}
.web_body_right{box-sizing: border-box;width: 236px;border:1px solid var(--border-dd);
}
.web_body_right>div:first-child{height: 32px;line-height: 32px;border-top: 1px solid var(--border-dd);border-bottom: 1px solid var(--border-dd);background: #f8f8f8;
}
.web_body_right>ul{padding: 0px 5px;box-sizing: border-box;
}
.web_body_right>ul>li{padding: 11px 0px;box-sizing: border-box;border-bottom: 1px dotted var(--border-dd);
}
.web_body_right>ul>li>span:first-child{width:62px;height: 62px;border:1px solid var(--border-dd);box-sizing: border-box;
}
.web_body_right>ul>li>span:first-child img{width: 100%;height: 100%;
}
.web_body_right>ul>li>span:last-child {margin-left: 5px;padding-top: 2px;height: 62px;box-sizing: border-box;
}
.web_body_right>ul>li>span:last-child>a{width: 100%;height: 38px;
}
/*网站底部*/
.fingerpost{height: 135px;border:1px solid var(--border-d4);box-sizing: border-box;
}
.fingerpost>div:not(.qq,.bottom-libg){width: 175px;height: 100%;background: url("../img/item_bg.gif") repeat-x;padding: 10px 20px;box-sizing: border-box;
}
.fingerpost>div>h3{padding-bottom: 8px;background: url("../img/link_bg.gif") repeat-x center bottom;
}
.fingerpost>div>ul{padding-bottom: 30px;
}
.fingerpost>div>ul>li{list-style: url("../img/tb6.gif") inside;line-height: 22px;
}
.fingerpost>.bottom-libg{width: 2px;height: 100%;background: url("../img/bottom_libg.gif") no-repeat;padding: 0px;
}
.qq{height: 100%;width: 270px;box-sizing: border-box;
}
.qq>div:last-child{height: 36px;background: url("../img/foot_tel.gif") no-repeat left center;width: 243px;margin-top: 10px;line-height: 33px;color: var(--font-white);font-size: 20px;padding-left: 100px;
}
.foot>div:last-child>a{color:green;
}
.foot>div:last-child>a:hover{color: orange;
}
  • index.html文件内容
<!doctype html>
<html lang="en"><head><meta charset="UTF-8"><title>EWshop首页</title><link rel="stylesheet" href="./css/global.css" /><link rel="stylesheet" href="./css/ewshop.css" /><link rel="stylesheet" href="./css/index.css"><link rel="stylesheet" href="https://at.alicdn.com/t/c/font_3979780_xm8vkr6gys.css"></head><body><!--公共头部--><header><!--头部内容--><div id="top" class="w-100 border-top border-box bg-color-f5 border-bottom border-dd"><div class="top w-980px overflow-hidden m-auto"><div class="top_left fl py-1 font-666">您好,欢迎使用EWShop商城系统</div><div class="top_right fr"><ul class="w-100 fl py-1"><li class="fl"><a href="" class="fl px-3 font-666">登录</a><span class="font-dddadb fl">|</span></li><li class="fl"><a href="" class="fl px-3 font-666">注册</a><span class="font-dddadb fl">|</span></li><li class="fl"><a href="" class="fl px-3 font-666"><i class="iconfont icon-gouwuche"></i>购物车<span class="font-red">0</span>件</a><span class="font-dddadb fl">|</span></li><li class="fl"><a href="" class="fl px-3 font-666">订单查询</a></li></ul></div></div></div><!--搜索区域--><div class="search my-4 w-980px m-auto"><div class="fl logo"><img src="./img/logo.png" class="w-100" alt=""></div><div class="fl search_form"><form action="" method="get"><input type="search" name="search" id=""><input type="submit" value="搜索" /></form></div><div class="fr phone border border-dd bg-color-f5 font-16 font-red font-weight-bold mt-2 py-1 px-3">咨询热线:400-700-8888</div></div><div class="c"></div><!--导航区域--><nav class="w-980px overflow-hidden my-2 m-auto bg-color-red"><ul class="fl"><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">首页</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">前端</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">后端</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">云计算</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">产品设计</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">前沿</a></li><li class="fl"><a href="" class="font-white font-weight-bold fl font-14 py-2 px-4">关于我们</a></li></ul></nav><!--广告--><div class="w-980px m-auto"><img src="./img/ad.png" alt=""></div></header><!--特价商品--><section class="bargain mt-2 w-980px overflow-hidden m-auto "><div class="bargain_left fl"><div class="font-14 font-weight-bold bg-color-fc border-box w-100 font-555 pl-4">特价商品</div><div class="bargain_left_bottom border-box fl px-1"><div class="bargain_goods fl py-2"><img src="./img/s.png" class="fl" alt=""><div class="fr px-1"><a class="font-12px font-555">《细说PHP》 第4版</a><p class="font-12px mt-4"><span class="font-red">¥108.0</span><del class="font-555">¥158.0</del></p></div></div><div class="bargain_goods fl py-2"><img src="./img/s.png" class="fl" alt=""><div class="fr px-1"><a class="font-12px font-555">《细说PHP》 第4版</a><p class="font-12px mt-4"><span class="font-red">¥108.0</span><del class="font-555">¥158.0</del></p></div></div><div class="bargain_goods fl py-2"><img src="./img/s.png" class="fl" alt=""><div class="fr px-1"><a class="font-12px font-555">《细说PHP》 第4版</a><p class="font-12px mt-4"><span class="font-red">¥108.0</span><del class="font-555">¥158.0</del></p></div></div></div></div><div class="bargain_center border-box overflow-hidden fl"><img src="./img/2020-0827-5f474a7259d67.png" class="w-100 h-100" alt=""></div><div class="bargain_right fr"><div class="bargain_right_top fl w-100 bg-color-red"><div class="fl ml-2 font-white font-weight-bold font-14">网站公告</div><a href="" class="fr mr-2 font-white font-weight-bold font-14">更多>></a></div><div class="bargain_right_bottom fl w-100"><ul class="px-1"><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li><li><a href="">2020年新书商家,共有新品3000套</a></li></ul></div></div></section><!--商品推荐--><section class="w-980px newGoods overflow-hidden my-2 m-auto border border-box border-dd"><div class="newGoods_title font-14 font-555 font-weight-bold">商品推荐</div><div class="newGoods_goods"><div class="fl"><div class="m-auto mt-3"><a href="" class=""><img class="" src="./img/2020-0820-5f3e084e2b714.png" alt=""></a></div><p><a href="">《细说PHP》第2版</a></p><p class="mt-2 align-center"><span class="font-16 font-red">¥78.0</span><small class="">¥118.0</small></p></div><div class="fl"><div class="m-auto mt-3"><a href="" class=""><img class="" src="./img/2020-0820-5f3e084e2b714.png" alt=""></a></div><p><a href="">《细说PHP》第2版</a></p><p class="mt-2 align-center"><span class="font-16 font-red">¥78.0</span><small class="">¥118.0</small></p></div><div class="fl"><div class="m-auto mt-3"><a href="" class=""><img class="" src="./img/2020-0820-5f3e084e2b714.png" alt=""></a></div><p><a href="">《细说PHP》第2版</a></p><p class="mt-2 align-center"><span class="font-16 font-red">¥78.0</span><small class="">¥118.0</small></p></div><div class="fl"><div class="m-auto mt-3"><a href="" class=""><img class="" src="./img/2020-0820-5f3e084e2b714.png" alt=""></a></div><p><a href="">《细说PHP》第2版</a></p><p class="mt-2 align-center"><span class="font-16 font-red">¥78.0</span><small class="">¥118.0</small></p></div><div class="fl"><div class="m-auto mt-3"><a href="" class=""><img class="" src="./img/2020-0820-5f3e084e2b714.png" alt=""></a></div><p><a href="">《细说PHP》第2版</a></p><p class="mt-2 align-center"><span class="font-16 font-red">¥78.0</span><small class="">¥118.0</small></p></div></div></section><div class="c"></div><!--前端--><section class="web w-980px m-auto overflow-hidden border-box  my-2"><div class="web_title fl w-100"><div class="fl font-14 font-555 font-weight-bold">前端</div><div class="fr pr-1"><a href="" class="font-555">更多>></a></div></div><div class="web_body fl w-100 mt-2"><div class="web_body_left fl h-100"><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div></div><div class="web_body_right fr h-100"><div class="w-100 fl font-14 font-555 font-weight-bold pl-2 border-box">【前端】 热销排行</div><ul class="fl w-100"><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li></ul></div></div></section><!--云计算--><section class="web w-980px m-auto overflow-hidden border-box  my-2"><div class="web_title fl w-100"><div class="fl font-14 font-555 font-weight-bold">云计算</div><div class="fr pr-1"><a href="" class="font-555">更多>></a></div></div><div class="web_body fl w-100 mt-2"><div class="web_body_left fl h-100"><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div><div><div><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></div><div class="pl-2"><a href="" class="font-555">《细说网页制作》</a></div><div class="align-center mt-3"><span class="font-16 font-red">¥38.0</span><del class="font-666">¥58.0</del></div></div></div><div class="web_body_right fr h-100"><div class="w-100 fl font-14 font-555 font-weight-bold pl-2 border-box">【前端】 热销排行</div><ul class="fl w-100"><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li><li class="fl w-100"><span class="fl"><a href=""><img src="./img/2020-0820-5f3e08d935cc4.png" alt=""></a></span><span class="fl"><a href="" class="font-555 fl">《细说网页制作》</a><span class="font-red">¥ 38.0</span></span></li></ul></div></div></section>
<!--        底部广告--><div class="w-980px m-auto border-box"><img src="./img/ad.png" alt=""></div>
<!--        网站底部--><footer class="w-980px m-auto overflow-hidden border-box my-2"><div class="fl fingerpost w-100"><div class="fl"><h3 class="font-666 pl-2 mt-2 font-14">用户指南</h3><ul class="pl-2 mt-1"><li><a href="" class="font-666">订单查询</a></li><li><a href="" class="font-666">验货与签收</a></li><li><a href="" class="font-666">配送时间及运费</a></li></ul></div><div class="fl bottom-libg"></div><div class="fl"><h3 class="font-666 pl-2 mt-2 font-14">用户指南</h3><ul class="pl-2 mt-1"><li><a href="" class="font-666">订单查询</a></li><li><a href="" class="font-666">验货与签收</a></li><li><a href="" class="font-666">配送时间及运费</a></li></ul></div><div class="fl bottom-libg"></div><div class="fl"><h3 class="font-666 pl-2 mt-2 font-14">用户指南</h3><ul class="pl-2 mt-1"><li><a href="" class="font-666">订单查询</a></li><li><a href="" class="font-666">验货与签收</a></li><li><a href="" class="font-666">配送时间及运费</a></li></ul></div><div class="fl bottom-libg"></div><div class="fl"><h3 class="font-666 pl-2 mt-2 font-14">用户指南</h3><ul class="pl-2 mt-1"><li><a href="" class="font-666">订单查询</a></li><li><a href="" class="font-666">验货与签收</a></li><li><a href="" class="font-666">配送时间及运费</a></li></ul></div><div class="fl bottom-libg"></div><div class="fl qq pl-3"><div class="qq_title font-666 font-16 mt-3">欢迎使用EWShop商城系统</div><div class="mt-2"><a href=""><img src="./img/button_11.gif" alt=""></a><a href=""><img src="./img/button_11.gif" alt=""></a><a href=""><img src="./img/button_11.gif" alt=""></a></div><div>400-700-8888</div></div></div><div class="link fl w-100 p-2 border-box border border-dd my-2"><span class="font-666 mr-2">友情链接:</span><a href=""class="font-666 ml-2">学习猿地</a><a href=""class="font-666 ml-2">学习猿地</a><a href=""class="font-666 ml-2">学习猿地</a><a href=""class="font-666 ml-2">学习猿地</a></div><div class="foot my-3"><div class="align-center font-333">Copyright © 学习猿地 2019-2022 All Rights Reserved 京ICP备1101010121号 京公网安备 101010101</div><div class="align-center font-333 my-1">咨询热线:400-700-8888 咨询QQ:779050720,46458494,8888888 </div><div class="align-center font-333">Powered by<a href="">EDUWORK</a></div></div></footer></body>
</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/44268.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

适配各种IT场景的零信任沙箱

在当今数字化时代&#xff0c;网络安全威胁层出不穷&#xff0c;传统的安全防御策略已难以应对日益复杂的网络攻击。零信任与沙箱技术的结合&#xff0c;作为一种新兴的安全防护策略&#xff0c;正逐渐受到企业和组织的青睐。本文将深入探讨零信任结合沙箱技术所能解决的问题及…

odoo视图继承

odoo视图继承 在模型时候&#xff0c;不对视图、菜单等进行修改&#xff0c;原视图和菜单等视图数据仍然可以使用&#xff0c;不需要重新构建 form视图继承案例 model&#xff1a;为对应模型 inherit_id&#xff1a;为继承的视图&#xff0c;ref:为继承视图的id&#xff0…

高考完的假期想学c语言要注意那些问题?

c语言算是现代编程语言里面比较简单的一个&#xff0c;对于高考刚考完的学生来说确实很适合刚好我有一些资料&#xff0c;是我根据网友给的问题精心整理了一份「c语言的资料从专业入门到高级教程」&#xff0c; 点个关注在评论区回复“888”之后私信回复“888”&#xff0c;全…

1.mysql基本概念环境配置等

1、数据库 mysqlmysqld数据库服务端 以特定格式保存的文件&#xff0c;我们叫做数据库广义&#xff1a;提供较为便捷的数据的存取服务 的软件集合、解决方案 ——mysql数据库 数据库VS文件 文件或者数据库&#xff0c;都可以进行数据的存储。 如果用文件&#xff0c;数据内容…

ChatGPT提问获取高质量答案的艺术PDF下载书籍推荐分享

ChatGPT高质量prompt技巧分享pdf&#xff0c; ChatGPT提问获取高质量答案的艺术pdf。本书是一本全面的指南&#xff0c;介绍了各种 Prompt 技术的理解和利用&#xff0c;用于从 ChatGPTmiki sharing中生成高质量的答案。我们将探讨如何使用不同的 Prompt 工程技术来实现不同的目…

类与对象-继承-构造和析构顺序

构造和析构顺序 #include<iostream> using namespace std;class Base { public:Base(){cout << "Base构造函数" << endl;}~Base(){cout << "Base析构函数" << endl;} };class Son :public Base { public:Son(){cout <&l…

移动UI:发现页面,是什么,有啥作用,该如何设计呢?

移动应用中的“发现页面”通常用于向用户展示新的内容、功能、活动或推荐信息&#xff0c;以帮助用户发现和探索应用中的新内容或功能。设计一个好的发现页面可以提升用户对应用的兴趣和粘性。 以下是设计发现页面时可以考虑的一些要点&#xff1a; 1. 推荐内容&#xff1a; …

驻场运维的前途在哪里,这里有金玉良言

甲方和乙方都干过&#xff0c;技术和经理都当过&#xff0c;我把重点跟你标记出来了。 你的思想要认识到&#xff0c;驻场运维不是纯技术&#xff0c;不是依靠你的技术进行单纯维护工作。是配合服务经理&#xff0c;做好服务工作&#xff0c;让乙方服务经理更好的开展工作&…

Elasticsearch7.10集群搭建

Elasticsearch详细介绍&#xff1a; Elasticsearch 是一个分布式、RESTful 风格的搜索和分析引擎。它的核心基于 Apache Lucene&#xff0c;能够处理海量的数据&#xff0c;并支持实时的全文搜索。以下是关于 Elasticsearch 的详细介绍。 一、基本概念 索引&#xff08;Index…

Git的稀疏检出(sparse checkout)

使用git bash 创建项目目录 mkdir projectDir 进入目录 cd projectDir 初始化空仓库 git init 关联远程地址 git remote add -f origin http://xxx.git 开启Sparse Checkout模式 git config core.sparsecheckout true 设置Check Out的文件或目录 echo "dir1/&…

Conformal low power-1.概述

概述 设计师们越来越期望更长的电池寿命和更高的性能。由于漏电流的增加&#xff0c;使用90纳米及更小工艺节点制造的设备在不使用时的功耗与使用时相同。设计师们可以针对漏电流和动态功耗进行优化&#xff0c;这可以减少能源使用并降低冷却和封装成本。额外的高级低功耗方法…

视觉语言模型:融合视觉与语言的未来

1. 概述 视觉语言模型&#xff08;Vision-Language Models, VLMs&#xff09;是能够同时处理和理解视觉&#xff08;图像&#xff09;和语言&#xff08;文本&#xff09;两种模态信息的人工智能模型。这种模型结合了计算机视觉和自然语言处理的技术&#xff0c;使得它们能够在…

基于SAM的零样本相似性评价方法

文章目录 介绍方法SAM编码器相似性指标代码复现介绍 图像转换具有广泛的应用,如风格转换和模态转换,通常是生成具有高度真实和忠实的图像。这些问题仍然很困难,特别是在保存语义结构很重要的时候。传统的图像级相似性度量的用途有限,因为图像的语义是高级的,并且不受对原…

简单分享下利用python做测试的学习方向

做为一名转行过来的工程师&#xff0c;我想分享一下这些年来&#xff0c;我对于技术是怎样晋升的&#xff0c;我是在职&#xff0c;边上班边利用时间学习起来的&#xff0c;也听过很多业内人的分享&#xff08;简单可以总结以下几点&#xff0c;分享给大家碎片的式学习方式&…

ESP32网络开发:1.创建一个基于TCP网络协议的网站

一、TCP协议的介绍 TCP&#xff08;传输控制协议&#xff0c;Transmission Control Protocol&#xff09;是互联网协议套件中的一种核心协议&#xff0c;主要用于在网络中的计算机之间可靠地传输数据。TCP协议位于OSI模型&#xff08;开放系统互联模型&#xff09;的传输层&…

「7.9更新日志」JVS·智能BI、逻辑引擎(服务编排)功能更新说明

项目介绍 JVS是企业级数字化服务构建的基础脚手架&#xff0c;主要解决企业信息化项目交付难、实施效率低、开发成本高的问题&#xff0c;采用微服务配置化的方式&#xff0c;提供了 低代码数据分析物联网的核心能力产品&#xff0c;并构建了协同办公、企业常用的管理工具等&am…

java使用poi-tl模版引擎导出word之列表循环数据渲染

目录 1.模版制作2.开启spring表达式3.编写关键代码接口4. 导出结果 poi-tl模版引擎中&#xff0c;如果区块对的值是一个非空集合&#xff0c;区块中的文档元素会被迭代渲染一次或者N次&#xff0c;这取决于集合的大小&#xff0c;类似于foreach语法。 1.模版制作 在静态资源目…

MySQL 速记SQL语句(SQL语句学习)

一、DDL DDL是Data Definition Language&#xff08;数据定义语言&#xff09;的缩写&#xff0c;它是SQL语言的一部分&#xff0c;主要用于定义数据库结构。DDL语句被数据库系统用来创建、修改或删除数据库对象&#xff0c;如数据库、表、索引、视图等。 #查询所有数据库 sh…

[ACM独立出版]2024年虚拟现实、图像和信号处理国际学术会议(ICVISP 2024)

[ACM独立出版]2024年虚拟现实、图像和信号处理国际学术会议&#xff08;ICVISP 2024&#xff09; 2024 International Conference on Virtual Reality, Image and Signal Processing 最新消息ICVISP 2024-已通过ACM出版申请投稿免费参会&#xff0c;口头汇报或海报展示(可获得…

品牌推广的要素有哪些?探寻最佳实践方法

作为一个手工酸奶品牌的创始人&#xff0c;目前全国复制了100多家门店。我来和大家分享下品牌推广的基本要素&#xff0c;以及最佳实践方法&#xff01; 一、品牌推广基本要素 1、目标市场分析 品牌推广的第一步就是明确目标市场。先了解目标受众的年龄、性别、消费习惯、有…