Сообщение от gods33
|
свойства таблицы буду применяться относительно дива?
|
Ты не указал позишн у #logo... А это важно. Так же нет полного текста хтмл-разметки... Что так же важно.
Вот пример...
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<style type='text/css'>
#logo {
position: absolute;
top: 5%;
left: 50%;
width: 30%;
height: 150px;
border: 1px solid;
}
.image {
position: absolute;
top: 50%;
left: 50%;
width: 200px;
height: 60px;
margin-top: -30px;
margin-left: -100px;
border: 1px solid;
}
</style>
<script type="text/javascript">
</script>
</head>
<body>
<div id='logo'>
<table class='image'>
<tr>
<td>test</td>
</tr>
</table>
</div>
</body>
</html>