Jump to content
  • 0

как "раздвинуть" пустой эелемент?


stalker_2000
 Share

Question

Приветствую! Верстаю меню, вот код:

<!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>
<style>
* { padding: 0; margin: 0; }
body {
padding: 5px 10px 5px 5px;
font-family: Verdana, Helvetica, sans-serif;
font-size: 1em; }

#main_menu ul {
list-style-type: none;
display: block; }
#main_menu li {
display: block;
float: left;
position: relative; }
#main_menu li a {
display: inline-block;
padding: 10px;
color: #000;
border-color: #000;
border-bottom: 1px solid;
text-decoration: none; }
#main_menu li span {
display: inline-block;
padding: 10px;
color: #000;
border-radius: 5px 5px 0px 0px;
border-color: #000;
border-top: 1px solid;
border-left: 1px solid;
border-right: 1px solid; }
#main_menu li span.blank {
width: 5px;
border-top: none;
border-left: none;
border-right: none;
border-bottom: 1px solid;
}
</style>
</head>

<body>
<div id="main_menu">
<ul>
<li><span>menu 1</span></li>
<li><span class="blank"></span></li>
<li><a href="?page=2">menu2</a></li>
<li><span class="blank"></span></li>
<li><a href="?page=3">menu3</a></li>
</ul>
</div>
<!-- ============================================================================================== -->
<div style="clear: both;"></div>

</body>
</html>

Между вкладками добавляю <li><span class="blank"></span></li> что-бы они не липли друг-к-другу. Проблема в том, что нижняя граница пустых span-ов должна быть вровень с другими элементами, а она выпирает вверх (т.к. span имеет нулевую высоту) :) и получается вот так:

57569e3c5602b8e1c1dfbbf6163ad6c6.png

Можно исправить, если принудительно добавить в пустые спаны пробел ( ), но это оскорбляет мои чувства. Ещё можно принудительно задать высоту, но тогда а) при масштабировании в броузере всё равно разлезАется, б) сайт верстается в em, точно подобрать гемморно.

Есть ещё способы?

Link to comment
Share on other sites

3 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.

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