回答編集履歴

1

削除

2017/10/03 08:20

投稿

arasi
arasi

スコア156

test CHANGED
@@ -1,133 +1 @@
1
- 検索したら該当しそうなのがありました
2
-
3
- ```
4
-
5
- <style>
6
-
7
- .box-outer {
8
-
9
- position: relative;
10
-
11
- z-index: 1;
12
-
13
- overflow: hidden;
14
-
15
- width: 100%;
16
-
17
- }
18
-
19
-
20
-
21
- .box-block {
22
-
23
- position: relative;
24
-
25
- width: auto;
26
-
27
- }
28
-
29
-
30
-
31
- .circle {
32
-
33
- width: 18px;
34
-
35
- height: 18px;
36
-
37
- position: absolute;
38
-
39
- z-index: 2;
40
-
41
- -webkit-border-radius: 100%;
42
-
43
- -moz-border-radius: 100%;
44
-
45
- -ms-border-radius: 100%;
46
-
47
- -o-border-radius: 100%;
48
-
49
- border-radius: 100%;
50
-
51
- }
52
-
53
-
54
-
55
- .top-left {
56
-
57
- left: -9px;
58
-
59
- top: -9px;
1
+ 文句言われたんで削除
60
-
61
- }
62
-
63
-
64
-
65
- .top-rigt {
66
-
67
- right: -9px;
68
-
69
- top: -9px;
70
-
71
- }
72
-
73
-
74
-
75
- .btm-left {
76
-
77
- left: -9px;
78
-
79
- bottom: -9px;
80
-
81
- }
82
-
83
-
84
-
85
- .btm-rigt {
86
-
87
- right: -9px;
88
-
89
- bottom: -9px;
90
-
91
- }
92
-
93
-
94
-
95
- #box01 .circle {
96
-
97
- background: #FFF;
98
-
99
- border: 1px solid #CCC;
100
-
101
- }
102
-
103
-
104
-
105
- #box01 .box-block {
106
-
107
- background: #FFF;
108
-
109
- border: 1px solid #CCC;
110
-
111
- padding: 25px;
112
-
113
- }
114
-
115
- </style>
116
-
117
- <div id="box01" class="box-outer">
118
-
119
- <div class="circle top-left"></div>
120
-
121
- <div class="circle top-rigt"></div>
122
-
123
- <div class="circle btm-left"></div>
124
-
125
- <div class="circle btm-rigt"></div>
126
-
127
- <div class="box-block">#box01</div>
128
-
129
- </div>
130
-
131
- ```
132
-
133
- [逆角丸のボックス](http://piccell.co/%E9%80%86%E8%A7%92%E4%B8%B8%E3%81%AE%E3%83%9C%E3%83%83%E3%82%AF%E3%82%B9/)