css边框

css边框

1.什么是边框:就是环绕在标签宽度和高度周围的线条
2.边框属性的格式

  • 2.1
  • 连写(同时设置四条边的边框)
  • border:边框的宽度 边框的样式 边框的颜色
  • 快捷键: bd+
  • 连写格式中颜色可以省略,省略是黑色,样式不能省略,宽度可以省略
  • 2.2
  • 连写(分别设置四条边的边框)
  • border-top:边框的宽度 边框的样式 边框的颜色
  • border-right:边框的宽度 边框的样式 边框的颜色
  • border-bottom:边框的宽度 边框的样式 边框的颜色
  • border-left:边框的宽度 边框的样式 边框的颜色
  • 2.3
  • 连写(分别设置四条边的边框)
  • border-width:上 右 下 左
  • border-style:上 右 下 左
  • border-color:上 右 下 左
  • 注意点:赋值是按上 右 下 左 顺时针来赋值
  • 取值省略时:省略上边,则上下相同
  • 省略左边,则左右相同
  • 只赋值一个,则全都相同
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>边框属性</title>
    
    <style>
        .box{
            width: 100px;
            height: 100px;
            background-color: pink;
           /* border:5px solid pink; */
            /*border-top: 10px solid yellow;
            border-right: 10px solid skyblue;
            border-bottom: 10px solid purple;
            border-left: 10px solid greenyellow;*/
            border-width: 10px 20px 20px 10px;
            border-style: solid dotted dotted solid;
            border-color: yellow;

        }
    </style>
</head>
<body>
<div class="box"></div>

</body>
</html>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值