수

css 미리보기 이미지

· 2017-08-29 (화) 14:39:31 · 2803

미리보기 이미지


이 border속성을 사용하여 축소판 이미지를 만듭니다.


31234ab8620368f9ba13b0aed9c8761d_1503985114_8072.png
 

예

img {

    border: 1px solid #ddd;

    border-radius: 4px;

    padding: 5px;

    width: 150px;

}


<img src="paris.jpg" alt="Paris">



[전체소스]


<!DOCTYPE html>

<html>

<head>

<style>

img {

    border: 1px solid #ddd;

    border-radius: 4px;

    padding: 5px;

    width: 150px;

}

</style>

</head>

<body>


<h2>Thumbnail Images</h2>

<p>Use the border property to create thumbnail images:</p>


<img src="paris.jpg" alt="Paris" style="width:150px">


</body>

</html>



31234ab8620368f9ba13b0aed9c8761d_1503985140_608.png
예
img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 150px;
}

img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}

<a href="paris.jpg">
  <img src="paris.jpg" alt="Paris">
</a>
[전체소스]
<!DOCTYPE html>
<html>
<head>
<style>
img {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 150px;
}

img:hover {
    box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
</style>
</head>
<body>

<h2>Thumbnail Image as Link</h2>
<p>Use the border property to create thumbnail images. Wrap an anchor around the image to use it as a link.</p>
<p>Hover over the image and click on it to see the effect.</p>

<a target="_blank" href="paris.jpg">
  <img src="paris.jpg" alt="Paris" style="width:150px">
</a>

</body>
</html>

|
댓글을 작성하시려면 로그인이 필요합니다.

퍼블리셔팁

1,282건

퍼블리싱과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
CSS 17-09-10 조회 2,019
CSS 17-09-10 조회 2,433
CSS 17-09-09 조회 2,008
CSS 17-09-09 조회 2,258
CSS 17-09-09 조회 2,050
CSS 17-09-07 조회 1,925
CSS 17-09-07 조회 2,294
CSS 17-09-07 조회 1,890
CSS 17-09-06 조회 1,982
CSS 17-09-06 조회 2,085
CSS 17-09-06 조회 2,093
CSS 17-09-02 조회 1,893
CSS 17-09-02 조회 4,589
CSS 17-09-02 조회 2,500
CSS 17-09-01 조회 2,909
CSS 17-09-01 조회 2,440
CSS 17-09-01 조회 2,370
CSS 17-08-31 조회 2,251
CSS 17-08-31 조회 2,535
CSS 17-08-31 조회 2,270
CSS 17-08-29 조회 2,421
CSS 17-08-29 조회 2,804
CSS 17-08-29 조회 2,116
CSS 17-08-25 조회 2,753
CSS 17-08-25 조회 2,177
CSS 17-08-25 조회 1,943
CSS 17-08-24 조회 1,621
CSS 17-08-24 조회 1,945
CSS 17-08-24 조회 2,717
CSS 17-08-23 조회 2,399