teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

セレクタ修正、clearfix追加。重すぎ

2019/11/07 05:06

投稿

x_x
x_x

スコア13749

answer CHANGED
@@ -3,12 +3,18 @@
3
3
  text-align: center;
4
4
  }
5
5
 
6
+ ul::after {
7
+ content: '';
8
+ display: block;
9
+ clear: both;
10
+ }
11
+
6
12
  ul > li {
7
13
  display: inline-block;
8
14
  }
9
15
 
10
- ul > li:nth-last-child(n+5):first-child,
16
+ ul > li:nth-last-child(n+5),
11
- ul > li:nth-last-child(n+5):first-child ~ li {
17
+ ul > li:nth-last-child(n+5) ~ li {
12
18
  float: left;
13
19
  }
14
20
  ```