Jump to content
  • 0

Таблица в div'е


senneco
 Share

Question

Мне необходимо нарисовать таблицу внутри дива(который определённой ширины). И когда я рисую таблицу, если она не влезает в этот див, то просто добавлялась полоса прокрутки. Всё бы вроде ничего, сделал, но появилась другая проблема - не смотря на то, что я явно указываю ширину столбцов CSS'ом, они всё равно стремятся быть как можно уже. А мне нужно, естественно, чтоб они были всё-таки той ширины, которую я указываю.

Привожу пример исходника:

<!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">
<html>
<head>
<style type="text/css">
#main {
width: 200px;
overflow: auto;
border: 1px solid #555;
}
td {
width: 100px;
border: 1px solid #333;
}
</style>
</head>
<body>

<div id="main">
<table>
<tr>
<td>asdfa</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
</tr>
<tr>
<td>asdfa sdfdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
<td>asdfasdf</td>
</tr>
</table>
</div>

</body>
</html>

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

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

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