Jump to content
  • 0

HR - отступы, цвет


Ladoga
 Share

Question

12 answers to this question

Recommended Posts

  • 0
У тега
нет цвета! Вернее есть только в представлении ie. Так что лучше создайте вложенный див с border нужной толщины, нужного цвета и в нужном месте.

Ну почему же.. Его легко задать с помощью color (для IE) и background-color (для FF и др.). На этом же сайте прочла :)

В принципе конечно можно создать еще один div - не проблема, но меня интересовал вопрос именно касательно


.
Link to comment
Share on other sites

  • 0
Ну почему же.. Его легко задать с помощью color (для IE) и background-color (для FF и др.). На этом же сайте прочла :)

В доках (http://www.w3.org/TR/html401/present/graphics.html#h-15.3) ничего такого не наблюдаю, но работает. Спасибо, буду знать. :)

Link to comment
Share on other sites

  • 0

2 Ladoga

Ну если сильно хочется, то...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<title></title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}

div {
border-bottom: 1px solid green;
}

hr {
clear: both;
border: none;
color: red;
background-color: red;
height: 2px;
}


</style>

<!--[if IE]>
<style type="text/css">
hr {
margin-top: -7px;
}
</style>
<![endif]-->

<body>
<div>
test
</div>
<hr>
</body>
</html>

Link to comment
Share on other sites

  • 0
Да, так получается. Только вот снизу добавляется совсем ненужный и довольно большой отступ...

Хочу Вас только предупредить, что такая верстка - извращение :)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<title></title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}

div {
border-bottom: 1px solid green;
border-top: 1px solid green;
}

hr {
height: 2px;
border: none;
color: red;
background-color:red;
}
</style>

<!--[if IE]>
<style type="text/css">
hr {
display: block;
margin-top: -7px;
margin-bottom: -7px;
}
</style>
<![endif]-->

<body>
<div>
test
</div>
<hr>
test
</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