Skip to content

Commit 60a6aca

Browse files
authored
Create CSS-清新布局.md
1 parent e6c62af commit 60a6aca

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

css/CSS-清新布局.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## 清新布局css
2+
3+
```html
4+
<html>
5+
<head>
6+
<style>
7+
h4 {
8+
font-family: 'Raleway', sans-serif;
9+
margin-top: 25px;
10+
line-height: 30px;
11+
}
12+
.item-boxes {
13+
width: 200px;
14+
height: 100px;
15+
text-align: center;
16+
border-radius: 4px;
17+
}
18+
.item-boxes:hover {
19+
background: #fff;
20+
box-shadow: 0 8px 48px 0 rgba(0, 0, 0, 0.15);
21+
}
22+
</style>
23+
</head>
24+
<body>
25+
<div class="item-boxes"><h4>这是测试</h4></div>
26+
</body>
27+
</html>
28+
```

0 commit comments

Comments
 (0)