本文介绍了如何自动调整所有屏幕尺寸的缩略图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
body{
width:auto;
color:white;
font-size:15px;
width:100%;
max-width:1980px;
min-width:334px;
margin:0px auto;
}
这是我的代码。我需要缩略图在所有屏幕分辨率的中心。但我不能这样做。我甚至尝试标签。它也没有工作。我该怎么办?
This is my code. I need thumbnails to be in the center for all screen resolutions. But I can't do it. I even tried tag. It didn't work either. What should I do?
推荐答案
请参阅此网址:
html:
<div id="my-div">my div</div>
css:
div#my-div{
margin:0px auto;
background: red;
width: 100px;
height: 100px;
}
这篇关于如何自动调整所有屏幕尺寸的缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!