学成在线项目note

目录

一、index.html

1、头部header

2、轮播图banner

3、精品推荐

4、精品推荐课程

 5、footer

二、index.css

1、重要的代码


一、index.html

 

 

1、头部header


    

2、轮播图banner

学成在线项目note_第1张图片

3、精品推荐

ul是无序列表

学成在线项目note_第2张图片 

ol是有序列表

学成在线项目note_第3张图片

4、精品推荐课程

 

 

 

 5、footer

学成在线项目note_第4张图片

 

 
 换行


列表标题

列表内容

列表内容

...

二、index.css

index.css是用来美化首页的

1、重要的代码

* {
    margin: 0;
    padding: 0;
    /* 內减模式 */
    box-sizing: border-box;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
}

.clearfix:before,.clearfix:after {
    content:"";
    display:table; 
  }
  .clearfix:after {
    clear:both;
  }


body {
    background-color: #f3f5f7;
}

/* 版心 */
.wrapper {
    width: 1200px;
    margin: 0 auto;
}

学成在线项目note_第5张图片

 2、

margin:表示元素的外边距

·形如:margin:5px 10px 15px 20px;

依次表示 上右下左

上 margin-top 5px

右 margin-right 10px

下 margin-bottom 15px 

左 margin-left 20px

缺省情况下 margin:5px;

表示 上下左右都是5px

缺省情况下 margin:5px 10px;

表示 上下是5px,左右是10px

缺省情况下 margin:5px auto 10px;

表示 上是5px,左右是auto,下为10px

属性值是auto的时候,默认只支持margin-left:auto;和margin-right:auto; 上下暂时不支持auto

说明:margin:0 auto;可以实现一个有宽度的块元素盒子水平居中

3、导航

.nav {
    float: left;
    margin-left: 70px;
    height: 42px;
}

.nav li {
    float: left;
    margin-right: 26px;
}

.nav li a {
    display: block;
    padding: 0 9px;
    height: 42px;
    line-height: 42px;
    /* border-bottom: 2px solid #00a4ff; */

    font-size: 18px;
    color: #050505;
}

.nav li a:hover {
    border-bottom: 2px solid #00a4ff;
}

 4、

 

       

/* 控制placeholder的样式 */

.search input::placeholder {

    font-size: 14px;

    color: #bfbfbf;

}

学成在线项目note_第6张图片

5、

.user img {

    /* 调节图片垂直对齐方式, middle:居中 */

    vertical-align: middle;

}

6、轮播图

/* 轮播图 */
.banner {
    height: 420px;
    background-color: #1c036c;
}

.banner .wrapper {
    height: 420px;
    background-image: url(../images/banner2.png);
}

 

.banner .left {
    float: left;

    padding: 0 20px;

    width: 190px;
    height: 420px;
    background-color: rgba(0,0,0, 0.3);

    /* 行高属于控制文字的属性, 能继承 */
    line-height: 44px;
}
.banner .left a:hover {
    color: #00b4ff;
}

7、

学成在线项目note_第7张图片

.banner .right h2 {
    height: 48px;
    background-color: #9bceea;
    text-align: center;
    line-height: 48px;
    font-size: 18px;
    color: #fff;
}

.banner .right .content {
    padding: 0 18px;
}

.banner .right .content dl {
    padding: 12px 0;
    border-bottom:2px solid #e5e5e5;
}

.banner .right .content dt {
    font-size: 16px;
    color: #4e4e4e;
}

.banner .right .content dd {
    font-size: 14px;
    color: #4e4e4e;
}

.banner .right .more {
    display: block;
    /* margin: 4px 14px 0; */
    margin: 4px auto 0;
    width: 200px;
    height: 40px;
    border: 1px solid #00a4ff;

    font-size: 16px;
    color: #00a4ff;
    font-weight: 700;

    text-align: center;
    line-height: 40px;
}

padding设置方法:
padding:10px 四周
padding:10px 20px 上下 左右
padding:10px 20px 30px 上 左右 下
padding:10px 20px 30px 40px 上右下左

给父元素设置text-align:center可以实现文本、图片等行内元素的水平居中。

left,right,center,这三个取值。

text-align属性的设置,对于块级元素是无效的,但是对于行内元素是可以起作用的。

通过给父元素设置line-height来实现垂直居中,line-height值和父元素高度值相同。

可以将行高设置为和高度一样的值,使单行文字在一个元素中垂直居中。

学成在线项目note_第8张图片

 8、

box-shadow: 0px 2px 3px 0px 
		rgba(118, 118, 118, 0.2);

学成在线项目note_第9张图片  

.goods li a {
    border-left: 1px solid #bfbfbf;
    padding: 0 30px;
    font-size: 16px;
    color: #050505;
}

.box .content li:nth-child(5n) {
    margin-right: 0;
}

 9、

/* 版权 */
.footer {
    margin-top: 40px;

    padding-top: 30px;

    height: 417px;
    background-color: #fff;
}

 下载APP

.footer .left a {
    display: inline-block;
    width: 120px;
    height: 36px;
    border: 1px solid #00a4ff;
    text-align: center;
    line-height: 36px;
    font-size: 16px;
    color: #00a4ff;
}

学成在线项目note_第10张图片

display属性详解_display详解_木森林哥哥的博客-CSDN博客

你可能感兴趣的:(黑马前端笔记,html,css,前端)