回答編集履歴
1
情報の追加。
answer
CHANGED
@@ -11,4 +11,23 @@
|
|
11
11
|
どういうCSSが影響しているかはデベロッパーツールで確認してみてください。
|
12
12
|
|
13
13
|
【ChromeデベロッパーツールでCSSをチェックする方法 | なんでものびるWEB】
|
14
|
-
[https://nandemo-nobiru.com/2944/](https://nandemo-nobiru.com/2944/)
|
14
|
+
[https://nandemo-nobiru.com/2944/](https://nandemo-nobiru.com/2944/)
|
15
|
+
|
16
|
+
---
|
17
|
+
|
18
|
+
**追記:**
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
`text-decoration: none;` の状態で `border-bottom`を下にぴったり付けたい場合、`display: inline-block;` `line-height: 1;` を付けると とりあえずできる。
|
23
|
+
```CSS
|
24
|
+
p {
|
25
|
+
line-height: 1.8;
|
26
|
+
}
|
27
|
+
a {
|
28
|
+
border-bottom: 2px solid green;
|
29
|
+
line-height: 1;
|
30
|
+
display: inline-block;
|
31
|
+
text-decoration: none;
|
32
|
+
}
|
33
|
+
```**動くサンプル:**[https://jsfiddle.net/zu4acm7p/](https://jsfiddle.net/zu4acm7p/)
|