質問編集履歴

1

参考コードを消しました。

2018/07/17 02:10

投稿

IGE
IGE

スコア46

test CHANGED
File without changes
test CHANGED
@@ -22,47 +22,19 @@
22
22
 
23
23
  ```
24
24
 
25
- 一行だけであれば、以下のように擬似クラスで下線を引けますが、複数行ではできません。。
25
+ 一行だけであれば、以下の方のように擬似クラスで下線を引けますが、複数行ではできません。。
26
26
 
27
27
 
28
28
 
29
- ```css
30
-
31
- p strong {
32
-
33
-  display: inline-block;
34
-
35
-  position: relative;
36
-
37
-  padding-bottom: 4px;
29
+ https://itstudio.co/2015/11/12/4946/
38
-
39
- }
40
30
 
41
31
 
42
32
 
43
- p strong:before {
44
-
45
- content:'';
46
-
47
- position: absolute;
48
-
49
- bottom: 0;
50
-
51
- left: 0;
52
-
53
- widtgh: 100%;
54
-
55
- height: 4px;
56
-
57
- background: orange;
33
+ background:linear-gradient等で以下の方のように複数行にラインや下線は引けますが、角丸はかけれません。。
58
-
59
- border-radius: 2px;
60
-
61
- }
62
34
 
63
35
 
64
36
 
65
- ```
37
+ https://wemo.tech/270
66
38
 
67
39
 
68
40