我正在尝试向div添加大小调整属性。但是我希望它仅在左右方向上更改其宽度和高度。我该怎么办?
这是我的代码:
<style>
.modal {
position: fixed;
z-index: 9999;
left: -1313px;
top: 89px;
width: 316px;
resize:both;
height: 333px;
overflow: auto;
margin: 0 auto;
background-color: rgba(208,208,208,0.4);
}
</style>
<div class="modal">
</div>
答案 0 :(得分:0)
我通过将margin-left和margin-top值设置为0解决了这个问题。