您的位置:首页 > Web前端 > CSS

精通 CSS+DIV 网页样式与布局 97

2016-12-09 11:51 645 查看
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>

<html>

<head>

<title> padding -bottom 的运用</title>

</head>

<body>

<p style=”border-bottom: 8px dotted blue; padding-bottom: 30px;”>

We can read of things that happened 5,000 years ago in the Near East, where people

first learned to write. But there are some parts of the world where even now people

cannot write. The only way that they can preserve their history is to recount it as

sagas.

</p>

<p>Next paragraph</p>

</body>

</html>

<html>

<head>

<title> margin -bottom 的运用</title>

</head>

<body>

<p style=”border-bottom: 8px dotted blue; padding-bottom: 30px; margin-bottom:

60px;”>

We can read of things that happened 5,000 years ago in the Near East, where people

first learned to write. But there are some parts of the world where even now people
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  css