HTML – 如何限制div宽度?

前端之家收集整理的这篇文章主要介绍了HTML – 如何限制div宽度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
它仍然溢出它看起来像这样
<table id="hlavni" style=" position:absolute; border:none; position:relative; background-color:#FFC; border:#999 1px solid;" cellpadding="5">
                <tr>
                <td id="yamana" class="trida" valign="top" style="line-height:1.5em;"><div style="background-color:#FFC;" id=load_tweets>44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444</div>
        </td>
        </tr></table><br />

解决方法

<html>
<head>
    <style type="text/css">
    #limit {
        max-width: 500px;
    }
    </style>
</head>
<body>
    <div id="limit">Your content goes here</div>
</body>
</html>

猜你在找的HTML相关文章