下面的代码是我正在尝试做的一个例子,我需要这个 div 跨越 600px 宽但是不管我是否放了 max-width: 600px; 或宽度:600px;它仍然是我电脑屏幕的宽度。
我怎样才能让它600px宽?
<style>
.errormsg3 {
text-align: center;
font-weight:bold;
color:white;
font-size: 16px;
background-color:red;
padding:8px;
max-width: 600px;
}
</style>
<?PHP
if (isset($_SESSION['sess_msg'])) {
echo '<div class="errormsg3">' .$_SESSION['sess_msg']. '</div>';
unset($_SESSION['sess_msg']);
}
?>
更新
它现在正在工作,firefox 似乎正在缓存我的网站,所以也许这就是它以前不起作用的原因。
div是红色的,是否可以在红色部分之外向div添加填充,所以有一个白色的填充/空间