Jump to content
  • 0

h1 и span в одной строке


SergeyVM
 Share

Question

Здраствуйте не могу понять почему не работает в IE7 следующий код:

Сам html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1251">
<title>Создаем свой первый проект</title>
<link href="styles/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="container">
<div id="header">
<h1>Типа крутой заголовок :-)</h1>
<span><a href="#">Главная</a> | <a href="#">Каталог</a> | <a href="#">Блог</a> | <a href="#">О нас</a> | <a href="#">Контакты</a></span>
</div>
</div>
</body>
</html>

файл стилей:

/* css reset*/
body, h1,h2,h3,p,ul,li,form,input {
border:0;
margin:0px;
padding:0px;
}
body, form, input {
color:#000;
font-family:Arial, Helvetica, sans-serif;
size:12px;
}
h1{
font-size:24px;
}
h2 {
font-size:18px;
}
h3 {
font-size:13px;
}
a:link,a:visited{
color:#0033cc;
}
a:hover{
color:#666;
}

/* ——————————
Структура страницы
—————————— */


div#container{
width:960px;
margin:0 auto;
border: 1px solid #ccc;}
div#header {
width:100%;
}
/*Стиль текста заголовка*/
#header h1 {
font-family:Helvetica, sans-serif;
color:#333;
line-height: 50px;
display: inline;
}
#header span { float: right;
line-height: 50px;
}

в firefox все ок как надо

screen1.jpg

а в 7 осле вот что:

screen2.jpg

Подскажите как исправить?

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0
зафлоать влево h1

и хедеру overflow: hidden

О сработало. :) Спасибо большое WalkMan

А принцип объяснить можете почему без этих свойств не работает?

Ну или хотя бы где почитать.

Link to comment
Share on other sites

  • 0
О сработало. :) Спасибо большое WalkMan

А принцип объяснить можете почему без этих свойств не работает?

Ну или хотя бы где почитать.

по дефолту у элементов ширина равна 100%

и соответственно спану в одну строку с н1 не влезть

когда блок флоатишь то у него ширина равна размеру содержимого

Link to comment
Share on other sites

  • 0
по дефолту у элементов ширина равна 100%

Наполовину гонево, у блок элементов да у инлайн элементов нет.

<div id="container">
<div id="header">
<span><a href="#">Главная</a> | <a href="#">Каталог</a> | <a href="#">Блог</a> | <a href="#">О нас</a> | <a href="#">Контакты</a></span>
<h1>Типа крутой заголовок :-)</h1>
</div>
</div>

про поведение флоат элементов читать тут

Link to comment
Share on other sites

  • 0
по дефолту у элементов ширина равна 100%

Не стоит путать людей, если вы зададите ширину блочному элементу в 100%, то к этой ширине еще добавятся отступы и бордеры, а по умолчанию блочные элементы со всеми отступами и бордерами занимают всю доступную ширину. И поведение с соседними плавающими элементами разное...

Link to comment
Share on other sites

  • 0

#header h1 {

display: block;

}

#header span {

display: block;

float: right;

}

попробуй это... или на крайний случай вставь таблицу... многим помагает))))

#header h1 {

display: block;

}

#header span {

display: block;

float: right;

}

попробуй это... или на крайний случай вставь таблицу... многим помагает))))

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