本文介绍了页面顶部和左侧的间隙的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我的aspx页面显示在浏览器上时,顶部和左侧存在间隙。如何摆脱这些差距?谢谢。

When my aspx pages display on the browsers, there exist gaps on the top and left. How to get rid of these gaps? Thanks.

推荐答案

width: auto;
margin-right: auto;
margin-left: auto;
margin-top: 0;
padding: 0px;
margin: 0px;


这篇关于页面顶部和左侧的间隙的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-09 09:27