我想摆脱使用max-width时出现的小点(有关详细信息,请参阅//)。
这是我的php,显示在会话中保存的一个消息:
<?php
echo "<table id='delpos'>";
echo "<td id='del'>" . $_SESSION["del"] ."</td> ";
echo "</table>";
?>
使用max-width + max-height显示背景颜色的css(直到会话存在):
<style>
#del {
background-color:red ;
color:white;
max-width:20px;
max-height:6px;
overflow:hidden; // tried using this to hide the small "red" dots...
}
#delpos {
margin-top:60px;
margin-left:30px;
position:absolute;
}
</style>
请帮忙:)