НЕобходимо,чтобы три блока внутри другого блока находились на одной высоте прижатые друг к другу,но 3й блок уходит вниз. Как исправить, потому что не могу понять что делаю не так
Код CSS
div#header {
background: grey;
border: yellow 3px ridge;
width: 888px;
min-width: 200px;
}
div#logo{
background: red;
border: green 2px ridge;
width: 363px;
height: 140px;
float: left;
}
div#menu{
background: darkblue;
border: black 2px ridge;
width: 150px;
height: 169px;
margin-left: 367px;
margin-right: 367px;
}
div#picture{
background: top yellow;
border: darkgreen 2px ridge;
width: 363px;
height: 169px;
float: right;
}
Код html
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
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
olejan
НЕобходимо,чтобы три блока внутри другого блока находились на одной высоте прижатые друг к другу,но 3й блок уходит вниз. Как исправить, потому что не могу понять что делаю не так
Код CSS
div#header {
background: grey;
border: yellow 3px ridge;
width: 888px;
min-width: 200px;
}
div#logo{
background: red;
border: green 2px ridge;
width: 363px;
height: 140px;
float: left;
}
div#menu{
background: darkblue;
border: black 2px ridge;
width: 150px;
height: 169px;
margin-left: 367px;
margin-right: 367px;
}
div#picture{
background: top yellow;
border: darkgreen 2px ridge;
width: 363px;
height: 169px;
float: right;
}
Код html
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>LugOS - интернет магазин</title>
<link rel="Stylesheet" type="text/css" href="style.css"/>
<link href="style.css" type="text/css" rel="stylesheet" >
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
</head>
<body>
<div id="header">
<div id="logo">Логотип</div>
<div id="menu">Меню</div>
<div id="picture">Рисунок по теме сайта</div>
</div>
</body>
</html>
Edited by olejanLink to comment
Share on other sites
6 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.