暑期实践——7.13

文章详细介绍了CSS中用于设置元素边框宽度、样式、颜色以及外边距的属性,包括border-right,border-bottom,border-left,border-color,border-style以及margin的各个方向。每个属性的语法、使用条件和示例代码都得到了清晰的展示,帮助读者理解如何控制网页元素的边框和空间布局。
摘要由CSDN通过智能技术生成
(3)右边框宽度(border-right)

语法:

border-right : border-width || border-style || border-color

(4)下边框宽度(border-bottom)

语法:

border-bottom : border-width || border-style || border-color

(5)左边框宽度(border-left)

语法:

border-right : border-width || border-style || border-color

(6)边框颜色(border-color)

语法:

border-color : color

要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。如果border-style设置为none,本属性将失去作用。

示例:

body { border-color: silver red }

body { border-color: silver red rgb(223, 94, 77) }

body { border-color: silver red rgb(223, 94, 77) black }

h4 { border-color: #ff0033; border-width: thick }

p { border-color: green; border-width: 3px }

p { border-color: #666699 #ff0033 #000000 #ffff99; border-width: 3px }

(7)边框样式(border-style)

语法:

border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | outest

要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。如果border-style设置为none,本属性将失去作用。

案例

<html>
<head>
<meta charset="utf-8">
<title>border-style</title>
    <style type="text/css">
        div{
            border-width: 6px;
            border-color: #000000;
            margin: 20px;
            padding: 5px;
            background-color: #FFFFCC;
        }
    </style>
</head>

<body>
    <div style="border-style: dashed">The border-style of dashed.</div>
    <div style="border-style: dotted">The border-style of dotted.</div>
    <div style="border-style: double">The border-style of double.</div>
    <div style="border-style: groove">The border-style of groove.</div>
    <div style="border-style: inset">The border-style of inset.</div>
    <div style="border-style: outset">The border-style of outset.</div>
    <div style="border-style: ridge">The border-style of ridge.</div>
    <div style="border-style: solid">The border-style of solid.</div>
</body>
</html>

 2、外边距

外边距指的是元素与元素之间的距离,外边距设置属性:margin-top、margin-right、margin-bottom、margin-left,可分别设置,也可以用margin属性一次设置所有边距。

(1)上外边距(margin-top)

语法:

margin-top : length | auto

设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。

示例:

body { margin-top: 15%

(2)右外边距(margin-right)

语法:

margin-right : length | auto

设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。

示例:

body { margin-right: 15%

(3)下外边距(margin-bottom)

语法:

margin-bottom : length | auto

设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。

示例:

body { margin-right: 15%

(4)左边距(margin-left)

语法:

margin-left : length | auto

设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。

示例:

body { margin-left: 15%

以上4项属性可以控制一个要素四周的边距,每一个边距都可以有不同的值。或者设置一个边距,然后让浏览器用默认设置设定其他几个边距也可以将边距应用于文字和其他元素。

示例:

h4 {

        margin-top: 20px; 

        margin-bottom: 5px;

        margin-left: 100px;

        margin-right: 55px

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值