# \[CSS\] Wierd Problem... probably simple

**URL:** https://forum.kirupa.com/t/css-wierd-problem-probably-simple/190287
**Category:** Uncategorized
**Created:** [June 10, 2006, 12:35am UTC](https://forum.kirupa.com/t/css-wierd-problem-probably-simple/190287 "2006-06-10T00:35:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Templarian](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/templarian/32/7152_2.png) [@Templarian](https://forum.kirupa.com/u/Templarian)
#### Post date: [June 10, 2006, 12:35am UTC](https://forum.kirupa.com/t/css-wierd-problem-probably-simple/190287/1 "2006-06-10T00:35:08Z")

</div>

\*\*I GOT IT TO WORK LET IT SINK

Description:\*\*  
Basically table with class one is 100% by 100%, but table with class two has width 100% but for class two the height acts like its not defined. If you view it in DW8 is shows what im talking about. How do i fix this?

```auto
<html>
<head>
<title>Untitled Document</title>
<style>
.one{
width: 100%;
height: 100%;
}
.two{
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0" class="one">
  <tr>
    <td>
      <table border="0" cellspacing="0" cellpadding="0" class="two">
        <tr>
           <td>&nbsp;</td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</body>
</html>

```
