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 колонки и в опере все не так как должно быть. в чем проблема?
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>Символика</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header">заголовок</div>
<div id="hor_menu">горизонтальное меню</div>
<div id="left">левый див</div>
<div id="right">правый див</div>
<div id="data">данные</div>
<div id="clear"></div>
<div id="footer">подвал</div>
</body>
</html>
css
#header{
margin-left: 15%;
width: 70%;
height: 100px;
background-color: red;
}
* HTML #header {
margin-left: 20%;
width: 80.7%;
}
#hor_menu{
margin-left: 15%;
width: 70%;
height: 100px;
background-color: aquamarine;
}
* HTML #hor_menu {
margin-left: 20%;
width: 80.7%;
}
#left{
margin-left: 15%;
width: 10%;
height: 500px;
float: left;
background-color: yellow;
}
* HTML #left {
margin-left: 20%;
float: left;
}
#right{
width: 10%;
height: 500px;
margin-right: 15%;
float: right;
background-color: yellow;
}
* HTML #right {
position: relative;
margin-right: 15%;
float: right;
position: relative;
left: -6px;
}
#data{
margin-left: 25%;
margin-right: 25%;
width: 50%;
height: 500px;
background: yellowgreen;
}
* HTML #data {
position: relative;
left: -3px;
width: 100%;
}
#clear{
clear: both;
}
#footer{
margin-left: 15%;
width: 70%;
height: 100px;
background-color: red;
}
* HTML #footer {
margin-left: 20%;
width: 80.7%;
}
Link to comment
Share on other sites
14 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.