背景:每天进步一点点,多积累一点点.就会越来越棒
代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>棒棒糖</title>
<h3>用css画一个棒棒糖</h3>
<p>要求:</p>
<p>1:棒棒糖中间文字为水平居中</p>
<p>2:不得少于三层颜色</p>
<style>
.round{
width: 100px;
height: 100px;
background-color: #e5e7e9;
position: relative;
text-align: center;
margin: 100px;
font: italic bold 17px/100px arial,sans-serif;
box-shadow:
0 0 0 10px #4286b4,
0 0 0 20px #fc052e,
0 0 0 30px #FBDD00,
0 0 0 40px #00BDFB;
border-radius: 200px;
color: #ffffff;
}
.bangbang{
width: 20px;
height: 150px;
margin: -80px 0px 0px 142px;
background-color: #00BDFB;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="round">
hello world!
</div>
<div class="bangbang"></div>
</body>
</html>
|

今天积累到的知识:
1:关于font的缩写
font-style:italic; font-variant:small-caps; font-weight:bold; font-size:12px; line-height:1.5em; font-family:arial,verdana; |