Здравствуйте участники форума подскажите, как убрать padding у div последнего элемента
исходные коды html, css прилагаю ниже
<div class = "news-main"> <div class = "news"> <div> <img src = "img/article-img1.jpg" alt = "" /> <h3>Column title</h3> <p class = "preview"> Maecenas faucibus mollis interdum. Etiam porta sem malesuada magna mollis euismod. Cras justo odio, dapibus ac facilisis in, egestas eget quam. </p> </div> </div> <div class = "news"> <div> <img src = "img/article-img2.jpg" alt = "" /> <h3>Column title</h3> <p class = "preview"> Maecenas faucibus mollis interdum. Etiam porta sem malesuada magna mollis euismod. Cras justo odio, dapibus ac facilisis in, egestas eget quam. </p> </div> </div> <div class = "news"> <div> <img src = "img/article-img3.jpg" alt = "" /> <h3>Column title</h3> <p class = "preview"> Maecenas faucibus mollis interdum. Etiam porta sem malesuada magna mollis euismod. Cras justo odio, dapibus ac facilisis in, egestas eget quam. </p> </div> </div> </div>
отступ нужно убрать у div, находящегося в последнем блоке с классом news
css код
.news-main{width: 100% ;overflow: hidden ;margin-bottom: 70px ; }.news {float: left ; width: 33.33% ;}.news div{padding-right: 15px ;}.news div img {margin-bottom: 5px ;}.news div h3{font-size: 18px ; color: #444444 ;margin-bottom: 5px ;}.news div p.preview{font-size: 12px ; color: #444444 ;text-align: justify ;}
Пробовал использовать псевдоэлементы last-child ничего не вышло/ В чем проблема не пойму.
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
pavlovda
Здравствуйте участники форума подскажите, как убрать padding у div последнего элемента
исходные коды html, css прилагаю ниже
отступ нужно убрать у div, находящегося в последнем блоке с классом news
css код
Пробовал использовать псевдоэлементы last-child ничего не вышло/ В чем проблема не пойму.
Link to comment
Share on other sites
8 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.