Jump to content
  • 0

Таблица с скроллируемым <tbody>


Great Rash
 Share

Question

Необходимо сделать таблицу у которой <thead> будет фиксированным, а <tbody> будет скроллироваться. И чтоб в ИЕ работало. Есть у кого идеи?

Желательно без скриптов, но в принципе и скриптами можно если чистым CSS никак нельзя.

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0
Необходимо сделать таблицу у которой <thead> будет фиксированным, а <tbody> будет скроллироваться. И чтоб в ИЕ работало. Есть у кого идеи?

Желательно без скриптов, но в принципе и скриптами можно если чистым CSS никак нельзя.

Ищите в инете. Есть примеры и со скриптами и условно без скриптов...

Link to comment
Share on other sites

  • 0

Собственно прежде чем создать топик я искал. Но результата, работающего во всех браузерах так и не нашел. В итоге я придумал свое решение, с небольшой помощью скрипта, но по большей части на CSS с использованием table-layout: fixed;

В любом случае спасибо.

Link to comment
Share on other sites

  • 0

dark_hero

Приведенный вами пример у меня не заработал в ИЕ. А в Мозилле работал криво.

psywalker

Вот такая штука у меня получилась:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Title</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
* {
margin: 0;
padding: 0;
}

table {
width: 100%;
table-layout: fixed;
}

td {
background: #efc;
border: #69c 1px solid;
}

div {
overflow-y: scroll;
height: 100px;
}
</style>

<script type="text/javascript">
function normalize() {
var h = document.getElementById('head');
var b = document.getElementById('body');
var c = document.getElementById('cont');

h.style.width = b.style.width = c.offsetWidth - 17 + 'px';
}

window.onload = function() {
normalize();
}

window.onresize = function() {
normalize();
}
</script>
</head>
<body>

<table id="head">
<tr>
<td>
header
</td>
<td>
header
</td>
<td>
header
</td>
<td>
header
</td>
<td>
header
</td>
</tr>
</table>
<div id="cont">
<table id="body">
<tr>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
</tr>
<tr>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
</tr>
<tr>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
</tr>
<tr>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
</tr>
<tr>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
<td>
cell
</td>
</tr>
</table>
</div>

</body>
</html>

Edited by Great Rash
Link to comment
Share on other sites

  • 0

JS нужен из-за того, что ширину я хочу резиновую. А при ширине 100% в ИЕ7 появляется горизонтальный скролл. Плюс в Мозилле и ИЕ8 немного криво стоит шапка таблицы. Скрипт уменьшает ширину таблицы от исходной на 17 пикселей (ширина скроллбара).

Есть только один минус - надо ставить overflow: scroll; вместо overflow: auto; иначе будут некрасивости.

Link to comment
Share on other sites

  • 0
dark_hero

Приведенный вами пример у меня не заработал в ИЕ. А в Мозилле работал криво.

не знаю, не знаю, у меня все отлично работает и в ие и в фф, проверьте еще раз, может не так что-нибудь сделали:

http://neoprizma.net/demo/table-with-fixed-header.html

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