Skip to content

Instantly share code, notes, and snippets.

@xiaojue
Created January 18, 2012 07:40
Show Gist options
  • Save xiaojue/1631822 to your computer and use it in GitHub Desktop.
Save xiaojue/1631822 to your computer and use it in GitHub Desktop.
autowidth
<!doctype html>
<html>
<body>
<style>
.author,.time{
width:100px;
}
.content{
position:relative;
border:#ccc solid 1px;
height:20px;
}
@-moz-document url-prefix()
{
.wrap{
width:100%;
}
.author,.time{
display:block;
}
}
.inner{
white-space: nowrap;
position:absolute;
width:100%;
height:20px;
overflow:hidden;
}
</style>
<table style="width:100%;">
<tbody>
<tr>
<td class="author"></td>
<td class="wrap">
<div class="content">
<div class="inner">
123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456
123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456123456
</div>
</div>
</td>
<td class="time"></td>
</td>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment