CSSで4列のレイアウトグリッドを作成するにはどうすればよいですか?
例
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } * { box-sizing: border-box; } .first, .second, .third, .fourth { float: left; width: 25%; color: white; padding: 10px; height: 500px; text-align: center; } .first { background-color: tomato; } .second { background-color: teal; } .third { background-color: rgb(166, 71, 255); } .fourth { background-color: rgb(255, 71, 194); } .container:after { clear: both; } </style> </head> <body> <h1 style="text-align: center;">Four Column grid example</h1> <div class="container"> <div class="first"> <h1>Some text on the first div</h1> </div> <div class="second"> <h1>Some text on the second div</h1> </div> <div class="third"> <h1>Some text on the third div</h1> </div> <div class="fourth"> <h1>Some text on the fourth div</h1> </div> </div> </body> </html>
出力
上記のコードは次の出力を生成します-
-
CSSで4列のレイアウトグリッドを作成するにはどうすればよいですか?
CSSを使用して4列のレイアウトグリッドを作成するには、コードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdan
-
CSSでチェックマーク/チェックマークを作成する方法
CSSを使用してカスタマイズされたチェックマークを作成できます。次の例は、この効果を示しています- 例 <!DOCTYPE html> <html> <style> div { margin: 2%; position: relative; width: 40px; height: 40px; box-shadow: inset 0 0 12px lightblue; } div::before { co