0
我真的在my website的主頁上掙扎。圖像在設備上不縮放
說我的電腦上動畫和交互式,網頁設計,印刷設計和插圖看起來不錯的圖像,但當我在我的iPad上看我的網站時,它們不能正確縮放。
這裏是CSS:
#content {
position: relative;
color: #333;
width:100%;
min-width: 900px;
border:none;
background: none;
overflow:auto;
padding-right:32px;
padding-left:32px;
padding-bottom: 86px;
}
#slideshow {
position:relative;
height:462px;
z-index:-1;
}
#slideshow IMG {
position:absolute;
top:0;
left:0;
z-index:8;
}
#slideshow IMG.active {
z-index:10;
}
#slideshow IMG.last-active {
z-index:9;
}
#rightholder {
float: right;
clear: left;
max-width: 639px;
width: 60%;
padding-top: 90px;
z-index:11;
}
.right {
float:right;
margin-bottom:20px;
max-width: 50%;
z-index:13;
}
.left{
float:left;
margin-bottom:20px;
max-width: 50%;
z-index:12;
}
你是什麼意思,他們不在iPad上擴展?他們沒有css來讓他們擴大規模。 – Luca 2012-07-31 09:18:43
他們都是固定尺寸的圖像,所以他們不會。你想在CSS中設置尺寸。 – SpaceBeers 2012-07-31 09:19:39
我在html中定義了尺寸,我會嘗試在CSS中進行。謝謝 這裏的HTML: – LaurenWomack 2012-07-31 09:22:00