-
-
Save xiaojue/1631822 to your computer and use it in GitHub Desktop.
autowidth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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