Нужно сделать страницу из 5 блоков, где прописывать расположение блоков и размеры? Мне нужна "резиновая" верстка, чтобы при разных разрешениях страницы выглядели хорошо.
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
Омск
Нужно сделать страницу из 5 блоков, где прописывать расположение блоков и размеры? Мне нужна "резиновая" верстка, чтобы при разных разрешениях страницы выглядели хорошо.
<html>
<head>
<title>title</title>
</head>
<body>
<div id="wrapper">
<div id="head">
<?php include 'head.php'; ?>
</div>
<div id="left">
<?php include 'left.php'; ?>
</div>
<div id="right">
<?php include 'right.php'; ?>
</div>
<div id="center">
<?php include 'center.php'; ?>
</div>
<div id="footer">
<?php include 'footer.php'; ?>
</div>
</div>
</body>
</html>
Link to comment
Share on other sites
2 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.