|
|
|
| Можете объснить разницу между position: absolute и position: relative. Относительно чего отсчитываются координаты? Можете обьянить по подробнее. ЗАРАНЕЕ БЛАГОДАРЮ. | |
|
|
|
|
|
|
|
для: jeans1986
(07.02.2007 в 19:07)
| | position: absolute - если в родительском элементе не указано position: relative, то относительно body, если указано - то относительно элемента у которого position: relative | |
|
|
|
|
|
|
|
для: AlexSol
(07.02.2007 в 19:14)
| | как то не понятно. можете пример привести? ЗАРАНЕЕ БЛАГОДАРЮ, | |
|
|
|
|
|
|
|
для: jeans1986
(08.02.2007 в 09:33)
| | темы можно 'поднимать', а вот дублировать нестоит
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Untitled Document</title>
</head>
<body>
<div style="height:150px;"></div>
<div style="position:absolute; top:50px; left:150px; width:100px; height:20px; border:1px solid red">(150,50) от левого угла
</div>
<div style="position:relative; border:1px solid silver">
от этого дива
<div style="position:absolute; top:20px; left:50px; border:1px solid black;">(50,20)</div>
</div>
</body>
</html>
|
| |
|
|
|