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
Faran
Здравствуйте. Я создаю свой сайт и сейчас остановился на проблеме с шапкой. Я планирую сделать вот такой каркас
На основе шаблона я сделал вот такой HTML код:
<!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>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="title" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
</head>
<body>
<div id="wrapper">
<div id="header">
лого
</div><!-- #header-->
<div id="middle">
<div id="container">
<div id="content">
контент
</div><!-- #content-->
</div><!-- #container-->
<div class="sidebar sl">
левое меню
</div><!-- .sidebar.sl -->
</div><!-- #middle-->
</div><!-- #wrapper -->
<div id="footer">
футер
</div>
</body>
</html>
И соответственной CSS код к нему:
* {
margin: 0;
padding: 0;
}
html {height: 100%}
body {
font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
width: 100%;
height: 100%;
}
a {
color: blue;
outline: none;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
p {margin: 0 0 18px}
img {
border: none;
}
input {vertical-align: middle}
#wrapper {
width: 1000px;
margin: 0 auto;
min-height: 100%;
height: auto !important;
height: 100%;
}
/* Header
—————————————————————————--*/
#header {
height: 150px;
background: #FFE680;
}
/* Middle
—————————————————————————--*/
#middle {
width: 100%;
padding: 0 0 50px;
height: 1%;
}
#middle:after {
content: '.';
display: block;
clear: both;
visibility: hidden;
height: 0;
}
#container {
width: 100%;
float: left;
overflow: hidden;
}
#content {
padding: 0 0 0 220px;
}
/* Sidebar Left
—————————————————————————--*/
.sl {
float: left;
width: 200px;
margin-left: -100%;
position: relative;
background: #B5E3FF;
}
/* Footer
—————————————————————————--*/
#footer {
width: 1000px;
margin: -25px auto 0;
height: 25px;
background: #BFF08E;
}
Помогите пожалуйста разделить шапку на три блока.
1 бок ширина 285 px
2 блок ширина 285 px
3 блок ширина 430 px
Edited by FaranLink 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.