我想在 css 中为我的 div 设置宽度和高度,但只有当我有 position:absolute 并且我不想拥有它时它才会起作用。因为当我有 position:absolute 时,它在其他屏幕上不会那么好。而且我想要它保持那个宽度,即使我没有任何文字或其他东西!:)
看:
.menu {
width:450px;
height:300px;
background:rgba(0,0,0,0.5);
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
border-radius: 7px;
-khtml-border-radius: 7px;
}
但我没有从中得到任何东西......
谢谢!:)