2017-04-21 21 views
0

私の人生ではサムネイル画像を取得できません。ページは次のとおりです。 ライトボックス画像のサムネイルを作成

#kidswehelp_images { 
position: relative; 
float: left; 
width: 25px; 
height: 25px; 
background-position: 50% 50%; 
background-repeat: no-repeat; 
background-size:  cover;} 

はちょうどそれは、たくさんの滑らかな印象ですので、画像が同じ大きさにするために取得しようとしている:私はそれを呼び出す必要があり

www.aliceskids.org/kidswehelp2.html

[画像のためだhttp://www.aliceskids.org/kidswehelp2.html]

<a href="../images/thankyounotes/girl_clothing.jpg" data-lightbox="kidswehelp" data-title=""><img id="clothing" src="../images/thankyounotes/girl_clothing.jpg" class="myThumbs"></a> 

    <a href="../images/thankyounotes/football_equipment.jpg" data-lightbox="kidswehelp" data-title=""><img id="football" src="../images/thankyounotes/football_equipment.jpg" class="myThumbs"></a> 

    <a href="../images/thankyounotes/soccer_equipment.jpg" data-lightbox="kidswehelp" data-title=""><img id="soccer" src="../images/thankyounotes/soccer_equipment.jpg" class="myThumb"></a> 

    <a href="../images/thankyounotes/maxx_clothing.jpg" data-lightbox="kidswehelp" data-title=""><img id="maxx" src="../images/thankyounotes/maxx_clothing.jpg" class="myThumb"></a> 

    <a href="../images/thankyounotes/new_shoes.jpg" data-lightbox="kidswehelp" data-title=""><img id="newshoes" src="../images/thankyounotes/new_shoes.jpg" class="myThumb"></a>' 

これは、スタイルシートからです:

'.myThumbs { 
float: left; 
margin-right: 1%; 
margin-bottom: 0.5em; 
width: 50%; 
height: 50%;}' 

答えて

0

あなたが全体のdivではなく、画像自体に25ピクセルを適用しています。

は以下のように、そのグループ内のクラスを各画像を与える:

class="mythumbs" 

を、あなたはその後、#kidswehelp_images

+0

のためにあなたのCSSを削除することができCSSに

.myThumbs { width: 25px; height: 25px; } 

を追加した画像はすべて同じを持っています'id =" thanks "'それぞれに固有のIDを渡すか、上で提案したクラスを使用して、重複するIDを削除する必要があります。同じクラスの複数のアイテムは正常ですが、同じIDではありません。各IDは一意である必要があります。 – Macsupport

+0

myThumbsクラスを呼び出すことができないようです。 「スタイル」文字列からCSSにすべてを移動しました。その前に、それを参照していなかった前に、CSSをクリーンアップしました。 '.myThumbs { \t float:left; \t margin-right:1%; \t margin-bottom:0.5em; \t幅:50%; \t高さ:50%;} ' そして、これはイメージのためのHTMLです: ' '

+0

@マークは、あなたはそれが最後で作業を取得するために管理していましたか? – Simon

関連する問題