Сегодня: 04.07.2022 - 05:17:36
Страницы: 1 Объявление |
---|
Здесь можно разместить рекламу, важное объявление.'
|
Автор | Сообщение |
---|
Админ •
А
|
<!DOCTYPE html> <html> <head> <style> * { box-sizing: border-box; } .column { float: left; width: 33.33%; padding: 5px; } /* Clearfix (clear floats) */ .row::after { content: ""; clear: both; display: table; } </style> </head> <body> <h2>Images Side by Side</h2> <p>How to create side-by-side images with the CSS float property:</p> <div class="row"> <div class="column"> <img src="img_snow.jpg" alt="Snow" style="width:100%"> </div> <div class="column"> <img src="img_forest.jpg" alt="Forest" style="width:100%"> </div> <div class="column"> <img src="img_mountains.jpg" alt="Mountains" style="width:100%"> </div> </div> </body> </html> | |
|
Сообщение # 1 |
20.03.22 - 16:57:13
|  | Страницы: 1
|