Jump to content
  • 0

Небольшая задачка


Dioni$$
 Share

Question

Часто приходится сталкиваться с такой ну не то что проблемкой.

Вобщем разметка типа такого

58bdb2cfe8b4.png

Есть у нас родительский блок, а внутри него блоки поменьше.

И надо чтобы крайние блоки прижимались к краям контейнера.

Как я это делаю

HTML

<div class="container">

<div class="block"></div>
<div class="block"></div>
<div class="block last"></div>

<div class="block"></div>
<div class="block"></div>
<div class="block last"></div>

<div class="block"></div>
<div class="block"></div>
<div class="block last"></div>

</div>

CSS

.block {float:left;margin:0 30px 30px 0;} /*к примеру*/
.last {margin:0 0 30px}

А как вы такое верстаете?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Я обычно делаю точно также, или добавляю класс :last-child если блоки идут в один ряд.

Также в твоем случае с помощью псевдоклассов, можно у каждого третьего блока убрать отступ срава.

Link to comment
Share on other sites

  • 0

А я бы так попробовал

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style type="text/css">
* { margin: 0; padding: 0;}
#wrap {
width: 380px;
margin: 0 auto;
background: #060;
overflow: hidden;
}
ul {
list-style: none;
width: 420px;
float: left;
margin-left: -20px;
}
ul li {
width: 100px;
height: 100px;
background: #0C0;
float: left;
margin: 20px;
}

</style>
</head>

<body>
<div id="wrap">
<ul id="menu">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0
psywalker - спасибо - прикольный вариант.

Можно ли то же реализовать для резины?

Ну даже не знаю, может что-то типа того:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style type="text/css">
* { margin: 0; padding: 0;}

#wrap {
margin: 0 auto;
background: red;
width: 60%;
margin: 0 auto;
}


ul {
list-style: none;
margin: 0 -20px;
text-align: justify;

}
ul li {
width: 100px;
height: 100px;
background: #0C0;
margin: 20px;
display: inline-block;

}
ul li.help { margin: 0; height: 0; background: none; width: 100%;}

</style>
</head>

<body>

<div id="wrap">
<ul id="menu">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li class="help"></li>
</ul>
</div>

</body>
</html>

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy