如何实现嵌套表格的100%高度_html/css_WEB-ITnose
表格嵌套 100%高度
| |||||||||||
table2的高度100%无效
请问如何才能让其高度100%?
回复讨论(解决方案)
把其自身的margin,padding除了,再用
把其自身的margin,padding除了,再用
说的好像真的似的,请在上面的代码中加好样式,如果可以,分全部给你
border-collspace:collspace; 这个不好用么?
你看看这个是不是你想要的结果
<div style=" width:500px; height:400px;"><table id="table1" > <tr> <td style="height:120px;"> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td class="detail"> <table id="table2" > <tr > <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr > <td> </td> <td> </td> <td> </td> </tr> </table> </td> <td> </td> </tr> <tr> <td style="height:20px;"> </td> <td> </td> <td> </td> </tr></table></div>
#table1 { width:100%; height:100%;border:3px solid gray;border-collapse:collapse;}#table1 td {border: 1px solid gray;padding:0px;}#table2 { width:100%; height:100%; margin:0px;border-collapse:collapse;}#table1 .detail {border-style: hidden;}#table2 td {border: 1px outset gray;}
你看看这个是不是你想要的结果
<div style=" width:500px; height:400px;"><table id="table1" > <tr> <td style="height:120px;"> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td class="detail"> <table id="table2" > <tr > <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr > <td> </td> <td> </td> <td> </td> </tr> </table> </td> <td> </td> </tr> <tr> <td style="height:20px;"> </td> <td> </td> <td> </td> </tr></table></div>
#table1 { width:100%; height:100%;border:3px solid gray;border-collapse:collapse;}#table1 td {border: 1px solid gray;padding:0px;}#table2 { width:100%; height:100%; margin:0px;border-collapse:collapse;}#table1 .detail {border-style: hidden;}#table2 td {border: 1px outset gray;}
抱歉,关键点:table2的100%高度还是没起作
我要的是table2能够占满class="detail"这个单元格,而且table1外面的div高度变化的话,table2也能跟着变
用js/jquery配合吧
<!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> <title> new document </title> <script type="text/javascript" src="http://lib.sinaapp.com/js/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> <!-- $(function(){ var $table2 = $("#table2"); $table2.height($table2.parent().height()); }) //--> </script> </head> <body><div style=" width:800px; height:600px;"><table id="table1" width="100%" height="100%" border="1" cellspacing="0" cellpadding="0"> <tr> <td style="height:120px;"> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> <table id="table2" width="100%" border="1" cellspacing="0" cellpadding="0"> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> <td> </td> </tr> </table> </td> <td> </td> </tr> <tr> <td style="height:20px;"> </td> <td> </td> <td> </td> </tr></table></div> </body></html>
chrome下效果
刚才查了一下css权威指南,p370页,表布局 之 高度。
表的高度计算在很大程度上留给用户代理决定。历史证明,各用户代理很可能有不同的做法,所以你要尽可能避免设置高度。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The official account web page update cache, this thing is simple and simple, and it is complicated enough to drink a pot of it. You worked hard to update the official account article, but the user still opened the old version. Who can bear the taste? In this article, let’s take a look at the twists and turns behind this and how to solve this problem gracefully. After reading it, you can easily deal with various caching problems, allowing your users to always experience the freshest content. Let’s talk about the basics first. To put it bluntly, in order to improve access speed, the browser or server stores some static resources (such as pictures, CSS, JS) or page content. Next time you access it, you can directly retrieve it from the cache without having to download it again, and it is naturally fast. But this thing is also a double-edged sword. The new version is online,

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

This article demonstrates efficient PNG border addition to webpages using CSS. It argues that CSS offers superior performance compared to JavaScript or libraries, detailing how to adjust border width, style, and color for subtle or prominent effect

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati
