Jump to content
  • 0

Позиционирование


AiVeR
 Share

Question

Всем привет, есть такое задание. Есть прямоугольник, в нём данная фоновая картинка, прямоугольник в рамке данного цвета. Прямоугольник посередине страницы. Делим этот прямоугольник на 2 части и в каждую часть посередине ставим круг. Не получается сделать это.

Вот точто я смог сделать:

http://l2-infinity.com.ua/tempus/default.html

Заранее спасибо.

Link to comment
Share on other sites

14 answers to this question

Recommended Posts

  • 0

С помощью позиционирования все просто решается. Единственная беда, в Сафари и Хроме блок к верхнему краю прилипает.

<!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>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
<style type="text/css" media="all">
body, html {
height: 100%;
}
body {
margin: 0;
background: #000;
}
.bg {
position: relative;
top: 10%;
height: 80%;
width: 300px;
background: url(bg.jpg);
border: 4px double aqua;
margin: 0 auto 0;
}
.krug1, .krug2 {
position: absolute;
background: url(krug.gif) no-repeat;
width: 100px;
height: 100px;
left: 100px;
}
.krug1 {
top: 25%;
margin-top: -50px;
}
.krug2 {
bottom: 25%;
margin-bottom: -50px;
}
</style>
</head>
<body>
<div class="bg">
<div class="krug1"></div>
<div class="krug2"></div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Спасибо, сейчас буду разбирать код :lol:

У меня в ИЕ прямоугольник не по центру. И ещё одно:

когда сжимаю или стягиваю вниз и вверх, то оно налаживается друг на друга.

Заранее спасибо =)

Edited by AiVeR
Link to comment
Share on other sites

  • 0
min-height устанавливает минимальную высоту блока. При достижении этого значения блок уменьшаться больше не будет.

Версия IE? Я проверял в IE6,8

Помоему IE min-height не понимает! :lol:

А хак с процентами не поможет!

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