品优购项目CSS+DIV布局学习笔记

通过三天的学习和实践,我从这个项目中学会并吸取了很多知识点

这是整体的页面图

产品列表页

产品详情信息图

接下来我来讲下从中学到的知识

1.前期准备

1).目录文件夹
名称 说明
项目文件夹 pinyougou
样式类图片文件夹 img
样式文件夹 css
产品类图片文件夹 upload
字体类文件夹 fonts
脚本文件夹 js
2).初始化CSS,让浏览器风格统一
/*清除元素默认的内外边距  */
* {
    margin: 0;
    padding: 0
}
/*让所有斜体 不倾斜*/
em,
i {
    font-style: normal;
}
/*去掉列表前面的小点*/
li {
    list-style: none;
}
/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
    border: 0;  /*ie6*/
    vertical-align: middle;
}
/*让button 按钮 变成小手*/
button {
    cursor: pointer;
}
/*取消链接的下划线*/
a {
    color: #666;
    text-decoration: none;
}

a:hover {
    color: #e33333;
}

button,
input {
    font-family: 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    /*取消轮廓线 蓝色的*/
    outline: none;
}

body {
    background-color: #fff;
    font: 12px/1.5 'Microsoft YaHei', 'Heiti SC', tahoma, arial, 'Hiragino Sans GB', \\5B8B\4F53, sans-serif;
    color: #666
}

.hide,
.none {
    display: none;
}
/*清除浮动*/
.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}

.clearfix {
    *zoom: 1
}

2.制作网站ico图标

自己制作ico图标

我使用的是这个网站转换 http://www.bitbug.net/。 比特虫

3.网站优化三大标签

品优购项目CSS+DIV布局学习笔记_第1张图片

注意点:

  1. 描述中出现关键词,与正文内容相关,这部分内容是给人看的,所以要写的很详细,让人感兴趣, 吸引用户点击。
  2. 同样遵循简短原则,字符数含空格在内不要超过 120 个汉字。
  3. 补充在 title 和 keywords 中未能充分表述的说明.
  4. 用英文逗号 关键词1,关键词2

4.使用字体图标

字体图标优点
可以做出跟图片一样可以做的事情,改变透明度、旋转度,等..
但是本质其实是文字,可以很随意的改变颜色、产生阴影、透明效果等等...
本身体积更小,但携带的信息并没有削减。
几乎支持所有的浏览器
移动端设备必备良药...
字体图标推荐网站

推荐网站: http://icomoon.io

  • icomoon字库
字体图标具体使用方法就不在这里一一介绍了
声明部分
   @font-face {
     font-family: 'icomoon';
     src:  url('fonts/icomoon.eot?7kkyc2');
     src:  url('fonts/icomoon.eot?7kkyc2#iefix') format('embedded-opentype'),
       url('fonts/icomoon.ttf?7kkyc2') format('truetype'),
       url('fonts/icomoon.woff?7kkyc2') format('woff'),
       url('fonts/icomoon.svg?7kkyc2#icomoon') format('svg');
     font-weight: normal;
     font-style: normal;
   }
   span {
        font-family: "icomoon";
    }

接下来附上index页面的html和css代码




    
    品优购-综合网购首选-正品低价、品质保障、配送及时、轻松购物!
    
    
    
        
    
    
    
    
    
    


    
    
    
    
    
    
    
    
    
    
    

    
    

今日推荐

  • 家用电器
  • 手机通讯
  • 家用电器
  • 家用电器
  • 家用电器
  • 家用电器

通用common代码

/*公共样式*/
.fl {
    float: left;
}
.fr {
    float: right;
}
/*版心*/
.w {
    width: 1200px;
    margin: 0 auto;
}
@font-face {
    font-family: 'icomoon';
    src:  url('../fonts/icomoon.eot?7kkyc2');
    src:  url('../fonts/icomoon.eot?7kkyc2#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?7kkyc2') format('truetype'),
    url('../fonts/icomoon.woff?7kkyc2') format('woff'),
    url('../fonts/icomoon.svg?7kkyc2#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}
.icommon{
    font-family: 'icomoon';
    font-size:12px;
}
.style-red {
    color: #c81623;
}
.shortcut{
    height: 31px;
    background-color: #f1f1f1;
    line-height: 31px;
}
.shortcut li{
    float: left;
}
.spacer{
    margin:0 14px;
    color: #666666;
}

.header{
    position: relative;
    height: 106px;
    line-height: 106px;
}
.logo{
    width: 175px;
    height: 55px;
}
.logo a{
    position: absolute;
    top: 27px;
    left: 0;
    width: 175px;
    height: 55px;
    background: url(../img/logo.png) no-repeat;
    font-size: 0;
}
.search{
    position: absolute;
    top: 26px;
    left: 347px;
    width: 538px;
    height: 34px;
    /*background-color: skyblue;*/
}
.search input{
    float: left;
    width: 454px;
    height: 32px;
    text-indent: 10px;
    border:2px solid #b1191a;
    font-size: 12px;
    color: #666666;
}.search button{
    float: left;
    width: 78px;
    height: 36px;
    background-color: #b1191a;
    border:2px solid #b1191a;;
}

.hotwords{
    position: absolute;
    top: 62px;
    left: 347px;
    width: 538px;
    height: 20px;
    /*background-color: pink;*/
}
.hotwords ul{
    height: 20px;
    padding-left: 12px;
}
.hotwords li{
    float: left;
    height: 20px;
    line-height: 20px;
    margin-right: 25px;
}
.hotwords li:hover{
    color: #c81623;
}

.shopcar{
    position: absolute;
    top: 25px;
    right: 64px;
    width: 138px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    background-color: #f7f7f7;
    border:1px solid #dfdfdf;
}
.car{
    font-family: 'icomoon';
    margin-right: 7px;
    font-size: 14px;
    color: #d95151;
}
.allow{
    font-family: 'icomoon';
    margin-left: 5px;
}
.count{
    position: absolute;
    top: -5px;
    left: 104px;
    height: 14px;
    line-height: 14px;
    padding: 0 4px;
    color: #fefefe;
    background-color: #e60012;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.nav{
    height: 45px;
    border-bottom: 2px solid #b1191a;
}
.dt {
    width: 209px;
    height: 45px;
    background-color: #b1191a;
    font-size: 16px;
    color: #fff;
    line-height: 45px;
    text-align: center;
}

.dd{
    /*display: none;*/
    height: 465px;
    margin-top: 2px;
    background-color: #c81623;
}
.meau-item{
    height: 31px;
    line-height: 31px;
    padding: 0 10px;
    color: #fff;
}
.meau-item a{
    font-size: 14px;
    color: #ffffff;
}
.meau-item i{
    float: right;
}
.meau-item:hover{
    background-color: #f7f7f7;
}
.meau-item:hover a{
    color:#b1191a;
}

}
.dorpdown{
    position: relative;
    
}
.dorpdown i{
    font-family: 'icomoon';
    color: #fff;
}
.navitems{
    float: left;
}
.navitems{
    margin-left: 10px;
}
.navitems li{
    float: left;
}
.navitems li a{
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 16px;
    color: #333333;
}
.navitems span{
    font-size: 14px;
}

.footer{
    height: 418px;
    background-color: #f5f5f5;
}


.mod_service{
    height: 109px;
    border-bottom: 1px solid #ededed;
}
.mod_service li{
    float: left;
    width: 240px;
    padding-top: 30px;
/*  height: 90px;*/
    
}
.mod_service_fonts{
    float: left;
    margin:5px 0 0 7px;
}
.mod_service_fonts h5{
    font-size: 14px;
}
.mod_service_icon{
    float: left;
    width: 50px;
    height: 50px;
    margin-left: 36px;
    background: url(../img/icons.png) no-repeat
}
.mod_service_zheng{
    background-position: -252px -3px;
}
.mod_service_ji{
    background-position: -254px -54px;
}
.mod_service_wu{
    background-position: -256px -106px;
}
.mod_service_te{
    background-position: -258px -157px;
}
.mod_service_bang{
    background-position: -256px -209px;
}
.mod_help{
    height: 188px;
    border-bottom: 1px solid #ededed;
}
.mod_help_item{
    float: left;
    width: 150px;
    padding:20px 0 0 50px;
}
.mod_help_item dt{
    height: 30px;
    font-size: 16px;
    color: #333333;
}
.mod_help_item dd{
    height: 20px;
}
.mod_help_app dt,.mod_help_app p{
    padding-left: 13px;
}
.mod_help_app img{
    margin:15px 0 8px 0;
}
.mod_copyright{
    height: 119px;

    text-align: center;

}
.mod_copyright_links{
    margin-top: 21px;
}
.mod_copyright_links span{
    margin:0 14px;
}
.mod_copyright_items{
    margin-top: 15px;
}

Index.css

.main{
    width: 980px;
    height: 465px;
    margin-left: 219px;
}
.focus{
    position: relative;
    width: 721px;
    height: 455px;
    margin-top: 10px;
}
.arrow_l,.arrow_r{
    position: absolute;
    top: 50%;
    width: 25px;
    height: 35px;
    margin-top: -17.5px;
    background:rgba(0,0,0,.3);
    font-family: 'icomoon';
    font-size: 14px;
}
.arrow_r{
    right: 0;
}
.circle{
    position: absolute;
    left: 30px;
    bottom: 20px;
    width: 113px;
    height: 15px;
    
}
.circle li{
    float: left;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    background:rgba(0,0,0,.3);
    border-radius: 50%;
    cursor: pointer;
}
.focus .current{
    background-color: #fff;
}
.newsflash{
    width: 250px;
    height: 454px;
    margin-top: 10px;
}
.news{
    width: 248px;
    height: 163px;
    border:1px solid #e4e4e4;
}
.news-hd{
    height: 32px;
    line-height: 32px;
    padding:0 14px;
    border-bottom: 1px dotted #e4e4e4;
}
.news-hd h4{
    float: left;
    font-size: 14px;
    color: #333333;
    font-weight: normal;
}
.news-hd a{
    float: right;
    font-family: 'icomoon';
}
.news-bd{
    padding: 10px 0 0 15px;
}
.news-bd li{
    margin-bottom: 5px;
}

.lifeservice{
    overflow: hidden;
    width: 248px;
    height: 208px;
    border:1px solid #e4e4e4;
    border-top: none;
}
.lifeservice ul{
    width: 252px;
}
.lifeservice li{
    float: left;
    width: 62px;
    height: 70px;
    border-right: 1px solid #e8e8e7;
    border-bottom: 1px solid #e8e8e7;
}
.lifeservice a{
    display: block;
    overflow: hidden;
    width: 62px;
    height: 70px;
    text-align: center;
}
.lifeservice_icon{
    display: block;
    width: 24px;
    height: 24px;
    margin:13px 0 8px 18px;
    background: url(../img/icons.png) no-repeat;
}
.lifeservice_hua{
    background-position: -17px -16px;
}
.lifeservice_ji{
    background-position: -80px -18px;
}
.lifeservice_dian{
    background-position: -142px -18px;
}
.bargain{
    width: 250px;
    height: 75px;
    margin-top: 5px;
}

.recommend{
    height: 163px;
    margin-top: 11px;
}
.recom-hd{
    width: 206px;
    height: 163px;
    text-align: center;
    background-color: #5c5251;
}
.recom-hd img{
    margin: 31px 0 8px 0;
}
.recom-hd h3{
    font-size: 18px;
    color: #fff;
}
.recom-bd{
    overflow: hidden;
    width: 994px;
    height: 163px;
    background-color: #ebebeb;
}
.recom-bd ul{
    width:996px;
}
.recom-bd li{
    float: left;
    width: 248px;
    height: 143px;
    border-right: 1px solid #dddddd;
    margin-top: 10px;
}

.box-hd{
    height: 30px;
    line-height: 30px;
    margin-top: 26px;
    border-bottom: 2px solid #c81623;
}
.box-hd h3{
    float: left;
    font-size: 18px;
    color: #c81623;
}
.box-hd ul{
    float: right;
}
.box-hd li{
    float: left;
}
.box-hd li a{
    margin:0 14px;
}

.box-bd{
    height: 360px;
}
.tab-content{
    height: 360px;
}
.tab-content li{
    float: left;
}
/*.tab-content a:hover{
    margin-left: 2px;
}*/
.w209{
    width: 209px;
    height: 360px;
    overflow: hidden;
}
.w209 ul{
    width: 209px;
    height: 99px;
}
.w209 li{
    width: 86px;
    height: 32px;
    line-height: 32px;
    margin-left: 12px;
    text-align: center;
    border-bottom: 1px solid #ededed;
}
.w209 img{
    display: block;
    width: 209px;
    height: 261px;
}

.w329{
    width: 329px;
}
.w219{
    width: 219px;
    border-right: 1px solid #ededed;
}
.w219 img{
    border-bottom: 1px solid #ededed;
}
.w220{
    width: 220px;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
}

.fixedtool{
    position: fixed;
    top: 200px;
    left:50%;
    width: 66px;
    margin-left: -677px;
}
.fixedtool li{
    width: 66px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-bottom: 1px solid #ededed;
    background-color: #ffffff;
}
.fixedtool .fixedtool_now{
    border:none;
    background-color: #c81623;

}
.fixedtool_now a{
    color: #fff;
}

5.知识点-获得焦点元素

:focus 伪类选择器用于选取获得焦点的元素

语法:


.total input {
  border: 1px solid #ccc;
  height: 30px;
  width: 40px;
  transition: all .5s;
}
/*这个input 获得了焦点*/
.total input:focus {
  width: 80px;
  border: 1px solid skyblue;
}
~~

6.知识点-过渡

过渡(transition)是CSS3中具有颠覆性的特征之一,我们可以在不使用 Flash 动画或 JavaScript 的情况下,当元素从一种样式变换为另一种样式时为元素添加效果。

过渡动画: 是从一个状态 渐渐的过渡到另外一个状态

可以让我们页面更好看,更动感十足,虽然 低版本浏览器不支持(ie9以下版本) 但是不会影响页面布局。

语法格式:

transition: 要过渡的属性  花费时间  运动曲线  何时开始;
属性 描述 CSS
transition 简写属性,用于在一个属性中设置四个过渡属性。 3
transition-property 规定应用过渡的 CSS 属性的名称。 3
transition-duration 定义过渡效果花费的时间。默认是 0。 3
transition-timing-function 规定过渡效果的时间曲线。默认是 "ease"。 3
transition-delay 规定过渡效果何时开始。默认是 0。 3
  • 属性

    属性就是你想要变化的 css 属性, 宽度高度 背景颜色 内外边距都可以 。如果想要所有的属性都变化过渡, 写一个all 就可以。

  • 花费时间

    transition-duration 花费时间 单位是 秒(必须写单位) s ms 比如 0.5s 这个s单位必须写 ms 毫秒

  • 运动曲线 默认是 ease

品优购项目CSS+DIV布局学习笔记_第2张图片

案例:

div {
            width: 200px;
            height: 100px;
            background-color: pink;
            /* transition: 要过渡的属性  花费时间  运动曲线  何时开始; */
            transition: width 0.6s ease 0s, height 0.3s ease-in 1s;
            /* transtion 过渡的意思  这句话写到div里面而不是 hover里面 */
  
            
}
div:hover {  /* 鼠标经过盒子,我们的宽度变为400 */

            width: 600px;
            height: 300px
}

transition: all 0.6s;  /* 所有属性都变化用all 就可以了  后面俩个属性可以省略 */

7.列表页的制作

list.html




    
    列表页-手机页面!
    
    
    
        
    
    
    
    
    
    


    
    
    
    
    
    
    
    
    
    
    
    
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
  • Apple苹果iPhone 6s Plus(A1699)32G 金色 移动联通电信4G手机

    ¥6088 ¥6988

    已售87%
    剩余29
    立即抢购
<<上一页 1 2 3 4 5 ... 下一页>> 共10页 到第

list.css

.second_kill{
    position: absolute;
    top: 40px;
    left: 185px;
    width: 71px;
    height: 32px;
    line-height: 32px;
    border-left: 2px solid #b3181c;
}
.second_kill img{
    display: inline-block;
    margin-left: 14px;
}
.sk_list{
    height: 45px;
    line-height: 45px;
}
.sk_list li{
    float: left;
    margin:0 28px;
}
.sk_list li a{
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
.sk_con{
    height: 45px;
    line-height: 45px;
    margin-left: 34px;
}
.sk_con li{
    float: left;
    margin:0 22px;
    font-family: 'icomoon';
}
.sk_bd{
    margin-top: 25px;
    /*overflow: hidden;*/
}
.sk_bd ul{
    width: 1210px;
}


.sk_goods{
    position: relative;
    float: left;
    width: 288px;
    height: 458px;
    border:1px solid transparent;
    margin:0 12px 15px 0;
}
.sk_goods:hover {
    border: 1px solid #e12228;
}
.sk_goods_title{
    margin:0 12px;
    font-size: 14px;
    color: #666666;
}
.sk_goods_price{
    margin:2px 0 2px 14px;
}
.sk_goods_price em{
    font-size: 22px;
    color: #e60012;
}
.sk_goods_price del{
    font-size: 14px;
    color: #a4a4a4;
    margin-left: 8px;
}
.sk_goods_progress{
    margin:0px 0 14px 14px;
}
.bar{
    display: inline-block;
    width: 130px;
    height: 10px;
    border:1px solid #e12228;
    border-radius: 5px;
    margin:0 5px;
    vertical-align: middle;
}
.bar_now{
    width: 87%;
    height: 10px;
    background-color: #ed282e;
}
.sk_goods_buy{
    position: absolute;
    bottom: 0;  
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #b1191a;
    font-size: 20px;
    color: #ffffff;
}

/*page*/
.page{
    margin:40px 0;
    text-align: center;
}
.page_num a{
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border:1px solid #ccc;
    background-color: #f7f7f7;
}
.page_num .page_prev,
.page_num .page_next{
    width: 83px;
}
.page_num .current,
.page_num .dotted{
    border:1px solid transparent;
    background-color: transparent;
}
.page_skip input{
    width: 46px;
    height: 36px;
    border:1px solid #ccc;
    text-align: center;
    transition: all 0.33s; 
}
.page_skip input:focus{
    width: 88px;
    border:1px solid skyblue;
}
.page_skip button{
    width: 54px;
    height: 36px;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
}

8.详情页的制作

detail.html




    
    
    
    详情页-综合网购首选-正品低价、品质保障、配送及时、轻松购物!
    
    
    


    
    
    
    
    
    
    
    

商品编号:0468256644

Apple iPhone 6s(A1700)64G玫瑰金色 移动通信电信4G手机
推荐选择下方[移动优惠购],手机套餐齐搞定,不用换号,每月还有花费返
价格
¥5299.00 降价通知 累计评价612188
促销
加购价满999.00另加20.00元,或满1999.00另加30.00元,或满2999.00另加40.00元,即可在购物车换购热销商品 详情 》
支持
以旧换新,闲置手机回收 4G套餐超值抢 礼品购
配送至
北京海淀区中关 有货 支持 99元免运费 |货到付款 |211限时达
由自营发货,并提供售后服务。11:00前完成下单,预计今天(08月10日)送达
选择颜色
金色 黑色 银色 玫瑰色
选择版本
公开版 移动4g

detail.css

.crumb_wrap{
    margin-top: 24px;
    height: 32px;
}
.crumb_wrap a{
    margin-right: 10px;
}
.crumb_wrap em{
    margin-right: 10px;
}
.preview_wrap{
    width: 400px;
    height: 560px;
    /*background-color: pink;*/
}
.itemInfo_wrap{
    width: 718px;
    /*background-color: blue;*/
}
.preview_img{
     border:1px solid #ededed;
}
.preview_list{
    position: relative;
    width: 400px;
    margin-top: 60px;
}
.list-item{
    width: 292px;
    height: 58px;
    margin:0 auto;
}
.list-item li{
    float: left;
    margin-right: 2px;
}
.list-item li.current{
    border:1px solid #c81623;
}
.arrow_prev,.arrow_next{
    position: absolute;
    width: 19px;
    height: 33px;
}
.arrow_prev{
    background: url(../img/arrow_prev.jpg);
    top:11px;
    left: 16px;
}
.arrow_next{
    background: url(../img/arrow_next.jpg);
    top:11px;
    right: 30px;
}
.preview_info{
    margin-top: 25px;
}
.sku_name{
    height: 34px;
    font-size: 16px;
    color:#333333;
    font-weight: 700;
}
.news{
    height: 32px;
    color: #e12228;
}
.summary{
    overflow: hidden;
}
.summary dl{
    overflow: hidden;
}
.summary dt{
    float: left;
    width: 60px;
    margin-left: 8px;
    line-height: 36px;
}
.summary dd{
    float: left;
    color: #999999
}
.summary_price,.summary_promotion{
    position: relative;
    width: 718px;   
    background-color: #fee9eb;
}
.summary_price dt{

    line-height: 36px;
}
.summary_price dd{
    
    line-height: 36px;
}
.summary_price em{
    font-size: 24px;
    color:#e12228;
}
.summary_price i{
    font-size: 12px;
    color:#c81623;
}
.summary_price span{
    position: absolute;
    right: 5px;
    font-size: 12px;
    color:#999999;
}
.summary_promotion{
    padding-bottom: 15px;
    margin-bottom: 12px;
    height: 70px;
}
.summary_promotion dt{
    line-height: 33px;
}
.summary_promotion dd{
    width: 560px;
    line-height: 33px;

}
.summary_promotion span{
    display: inline-block;
    width: 40px;
    height: 22px;
    line-height: 22px;
    margin-right: 8px;
    text-align: center;
    background-color: #c81623;
    color:#fff;
}
.summary_stock{
    width: 546px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ededed;
}
.choose_color{
    margin-top: 15px;
}
.choose_color dd a{
    display: inline-block;
    width: 80px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    background-color: #f7f7f7;
    border: 1px solid #ededed;
}
.choose_color a.current{
    border:1px solid #c81623;
}
.choose_version dd a{
    display: inline-block;
    height: 32px;
    line-height: 32px;
    padding: 0 14px;
    background-color: #f7f7f7;
    border: 1px solid #ededed;  
}

9.结语

通过这个项目,我重温了标准流,浮动和定位的应用场景,加强了css+div布局的印象,在接下来的日子中继续学习下去,加油

你可能感兴趣的:(品优购项目CSS+DIV布局学习笔记)