打卡十九天(今天没有感想)

CSS

3.4.列表

.title{
    font-size: 18px;
    font-weight: bold;
    text-indent: 1em;
    line-height: 35px;
    background: #49aabb;
}
/*ul li*/
/*
list-style:
none 去掉原点
circle  空心圆
decimal 有序数字
square  正方形
​
​
<div id="nav">
xxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxx
</div>
 */
​
ul{
    background: antiquewhite;
}
ul li{
    height: 30px;
    list-style: none;
    text-indent: 1em;
}
​
a{
    text-decoration: none;
    font-size: 14px;
    color: black;
}
a:hover{
    color: #bb42b6;
    text-decoration: underline;
}
​
#nav{
    width: 300px;
    background: antiquewhite;
}

3.5.背景

背景颜色

背景图片

<style>
    div{
        width: 1000px;
        height: 700px;
        border: 1px solid red;
        background-image: url("images/tx.png");/*默认是全部平铺的*/
    }
    .div1{
        background-repeat: repeat-x;/*水平*/
    }
    .div2{
        background-repeat: repeat-y;/*竖型*/
    }
    .div3{
        background-repeat: no-repeat;
    }
​
</style>

插入箭头

background: red url("../images/d.gif") 270px 10px no-repeat

背景 : 背景颜色 位置(“在上一个文件夹要用../ ”) x,y轴位置 只显示一个(默认是铺满)

3.6.渐变

背景图片渐变

    <style>
​
/*镜像渐变*/
        body{
            width: 500px;
            height: 1000px;
            background-image: linear-gradient(19deg,#8658bb 50%,#bb89ae 100%);
        }
    </style>

deg是角度 两个颜色,确认百分比

4.盒子模型

4.1 什么是盒子模型

margin:外边距

padding:内边距

border: 边框

4.2 边框

1.边框的粗细

2.边框的样子

3.边框的颜色

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        h1,ul,li,body{
            /*总有一个默认的外边距margin:0,常见操作*/
            margin: 0;
            padding: 0;
            text-decoration: none;
        }
        /*border: 粗细  样式(实线虚线)  颜色*/
        #box{
         width: 300px;
            border: 1px solid #bfff00;
        }
​
        h2{
            font-size: 16px;
            background-color: #bbb358;
            line-height: 30px;
            margin: 0;
            color: #8658bb;
        }
​
        form{
            background: brown;
        }
        div:nth-of-type(1) input{
            border: 3px solid black;
        }
        div:nth-of-type(2) input{
            border: 3px dashed #49aabb;
        }
        div:nth-of-type(1) input{
            border: 3px solid green;
        }
​
​
​
    </style>
</head>
<body>
​
<div id="box">
    <h2>
        会员登陆
    </h2>
    <form action="#">
        <div>
            <span>用户名:</span>
            <input type="text">
        </div>
        <div>
            <span>密码:</span>
            <input type="text">
        </div>
        <div>
            <span>邮箱:</span>
            <input type="text">
        </div>
    </form>
</div>
​
</body>
</html>

4.3 外边距

外边距妙用:使内容居中

<style>
    #box{
        margin: 0 auto;/*上下为0   auto自动居中*/
    }
​
</style>
  • 3
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值