如何从右到左以及从上到下调整div元素的大小

时间:2018-12-25 11:40:40

标签: javascript html css

我正在尝试向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>

1 个答案:

答案 0 :(得分:0)

我通过将margin-left和margin-top值设置为0解决了这个问题。