Jump to content
  • 0

верстка таблица отступы


musulman
 Share

Question

Салемствую :) Хотел сделать таблицу должна выгледить вот так.

http://slil.ru/24502174

А у меня , что то вообше не полуаеться вставляю верхние рис. Устанавливаю минус маргину и на ИЕ вообше рис пропадают на ФФ они вроде как стаят , но после обновления страницы они как и в ИЕ исчезают. Нижние рамки не могу не как сделать. И еще мне кажется что я ее через чурь намудрил например знаю что можно сделать без минусовоого маргина , но не знаю как без него :) , кто сможет показать как сделать ее более удобной ? Выслушаю все предложения...

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<title></title>
<style type="text/css">
#content {
display: block;
width: 780px;
height: 400px;
text-align: center;
border: 8px solid #abacab;
margin: 5px 5px 5px 15px;
background: white;
}
#content .tl_c { background: url(images/tl_c.gif) no-repeat;
float: left;
width: 28px;
height: 176px;
margin-left: -35px;
margin-top: -8px;
}
#content .tr_c { background: url(images/tr_c.gif);
float: right;
width: 37px;
height: 222px;
margin-top: -8px;
margin-right: -40px;
}
</style>
</head>
<body>
<div id="content">
<div class="tl_c"></div>
<div class="tr_c"></div>
<div class="c_c">AAA</div>
</div>
</body>
</html>

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Как вариант:

<div id="content">
<div class="правый верхний угол"></div>
<div class="левый верхний угол"></div>
<div class="контент">AAA</div>
<div class="правый верхний угол"></div>
<div class="левый верхний угол"></div>
</div>

И играться с position.

Link to comment
Share on other sites

  • 0

Полностью согласен. Проще таблицами :)

В принципе имея такую структуру при фиксированном ширине(как здесь):

<div id="container"> // Левая и правая граница.
<div id="main"> // Шапка
<div id="top_left"></div> // Левый верхний угол
<div id="top_right"></div> // правый верхний угол
<div id="content"></div> // Контент
</div>
<div id="footer"> // Линия подвала
<div id="bottom_left"></div> // Левый нижний угол
<div id="bottom_right"></div> // Правый нижний угол
</div>
</div>

можно спокойно сделать и углы и боковинки и подвал....

Link to comment
Share on other sites

  • 0

Вот, набросал по быстрому :)

<html>
<head>
<style type="text/css">
* {
margin:0;
padding:0;
}
#container {
background: #fff url(images/bg.gif) repeat-y top left;
width:500px;
margin:20px auto;
}
#main {
background: url(images/point.gif) repeat-x top left;
width:100%;
height:300px;
}
#top_left {
background: url(images/lt.gif) no-repeat top left;
float:left;
width:10px;
height:10px;
}
#top_right {
background: url(images/rt.gif) no-repeat top left;
float:right;
width:10px;
height:10px;
}
#footer {
background: url(images/point.gif) repeat-x bottom left;
height:10px;
}
#bottom_left {
background: url(images/lb.gif) no-repeat bottom left;
float:left;
width:10px;
height:10px;
}
#bottom_right {
background: url(images/rb.gif) no-repeat bottom left;
float:right;
width:10px;
height:10px;
}
#content {
padding:10px;
text-align:center;
}
</style>
</head>

<body>
<div id="container"> <!-- Левая и правая граница. -->
<div id="main"> <!-- Шапка -->
<div id="top_left"></div> <!-- Левый верхний угол -->
<div id="top_right"></div> <!-- правый верхний угол -->
<div id="content">бла-бла-бла</div> <!-- Контент -->
</div>
<div id="footer"> <!-- Линия подвала -->
<div id="bottom_left"></div> <!-- Левый нижний угол -->
<div id="bottom_right"></div> <!-- Правый нижний угол -->
</div>
</div>
</body>

Архив с рисунками тут: http://slil.ru/24514736

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