We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6c62af commit 60a6acaCopy full SHA for 60a6aca
css/CSS-清新布局.md
@@ -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