Jump to content
  • 0

Помогите решить простую задачу


veromi
 Share

Question

Нужно сделать простенькую табличку с несколькими ячейками. Хотелось бы его сделать на дивах..

Какая-то хрень выходит, причем в разных браузерах выглядит по разному... Подскажите где косяк?



<style>
/* Задаю границы по ширине, центральное выравнивание, бордюр */
.otziv{width:750px; margin: 0 auto; padding:0; border: 1px solid #feb735;
background-color:#222;}

/* Левая верхняя ячейка */
.author_otziv{width: 599px; height:25px ;position: relative; float: left; border-bottom:1px solid #feb735;}
/* Правая верхняя ячейка */
.date_otziv{width:150px;height:25px ; position: relative; float: right; border-bottom:1px solid #feb735; border-left:1px solid #feb735; }
/* Правая нижняя ячейка*/
.id_otziv{width:150px;height:25px ; position: relative; float: right; border-top:1px solid #feb735; border-left:1px solid #feb735;}


</style>


<body>




<div class='otziv'>
<div class='author_otziv'><h3>Автор</h3>
</div>
<div class='date_otziv'><p>Дата отзыва</p>
</div>
<div id='text_otziv'>
<p>Отзыв бла бла бла</p>
</div>

<div class='id_otziv'>
<p>ID</p>
</div>
</div>












</body>

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0

Оно?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<style type="text/css">
* { margin: 0; padding: 0;}
.wrap { border: 1px solid #000; overflow:hidden; width: 500px; height: 300px; position: relative;}
.wrap .right { float: right; width: 100px; height: 30px; background: red;}
.wrap .left { overflow: hidden; background: yellow; height: 30px;}
.wrap .bottom { position: absolute; width: 100px; height: 50px; background: blue; bottom: 0; right: 0;}

</style>
</head>

<body>
<div class="wrap">
<div class="right"></div>
<div class="left"></div>
<div class="bottom"></div>
</div>
</body>
</html>

Link to comment
Share on other sites

  • 0

Все так..

Только основной контейнер дожен быть не фиксированным, а резиновым по вертикали.... Должен растягиваться вниз в зависимости от объема текста..

А можно я не буду за тебя убирать высоту с контейнера? :rolleyes:

Link to comment
Share on other sites

  • 0

у заголовков по умолчанию есть отступы сверху и снизу, а то что ты обнулил, body еще не значит, что снял отступы и с заголовков!

.otziv_left h3 {margin:0;}

если нужно только в таблице

зачем по твоему делают такие длинные файлы reset.css?

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