1

我正在使用 HTML 和 CSS 处理网页。当我的浏览器全屏显示时,一切看起来都很好。但是,如果我调整浏览器的大小,文本会显示在图像顶部。我试图用谷歌搜索这个问题,但没有得到任何解决方案。有没有人遇到过类似的情况,知道解决办法吗?请分享你的想法。

代码在链接中:http: //jsfiddle.net/eJyZs/

顺便说一句,我也在使用 SimpleGrid。http://simplegrid.info/

4

2 回答 2

1

我认为你在 CSS 中犯了错误。

这是图像位置问题。所以,改变你的样式表。

例如:位置:固定;顶部:30px;右:5px;

因此,将固定位置更改为您想要的任何位置...有关更多帮助,请查看此处.. http://www.w3schools.com/Css/css_positioning.asp

于 2012-10-08T04:34:09.933 回答
0

嗨,现在习惯了标准设备的媒体查询

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}

更多信息

于 2012-10-08T04:23:42.073 回答