CSSでセクションカウンターを作成するにはどうすればよいですか?
CSSでセクションカウンターを作成するためのコードは次のとおりです-
例
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/fontawesome.min.css"> <style> * { box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif } .section { float: left; width: 25%; padding: 0 5px; } .sectionContainer {margin: 0 -5px;} .sectionContainer:after { content: ""; display: table; clear: both; } @media screen and (max-width: 600px) { .section { width: 100%; display: block; margin-bottom: 10px; } } .sectionCard { box-shadow: 0 4px 8px 0 rgb(127, 16, 172); padding: 16px; text-align: center; background-color: rgb(127, 16, 172); color: rgb(255, 255, 255); } .fa {font-size:50px;} </style> </head> <body> <h1>Responsive Section Counter Example</h1> <br> <div class="sectionContainer"> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-mobile" aria-hidden="true"></i></p> <h3>100000+</h3> <p>Downloads</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-globe" aria-hidden="true"></i></p> <h3>5000+</h3> <p>Outlets over the globe</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-bar-chart" aria-hidden="true"></i> </p> <h3>Top Performer</h3> <p>In past 5 years</p> </div> </div> <div class="section"> <div class="sectionCard"> <p><i class="fa fa-handshake-o" aria-hidden="true"></i></p> <h3>3000+</h3> <p>Partners</p> </div> </div> </div> </body> </html>
出力
上記のコードは次の出力を生成します-
-
CSSでチャットメッセージを作成するにはどうすればよいですか?
CSSを使用してチャットメッセージを作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body { margin: 0 auto; max-width: 800px;
-
CSSを使用してWebサイトのabout/about usページを作成するにはどうすればよいですか?
アバウトページを作成するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> html { box-sizing: border-box; } body { &nbs