Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

썸네일 이미지 CSS를 만드는 방법은 무엇입니까?


다음은 CSS를 사용하여 썸네일 이미지를 만드는 코드입니다 −

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
img {
   border: 3px solid rgb(208, 255, 0);
   border-radius: 4px;
   width: 150px;
   height: 150px;
}
img:hover {
   box-shadow: 2px 2px 4px 2px rgb(60, 255, 53);
}
</style>
</head>
<body>
<h1>Thumbnail Image Example</h1>
<a target="_blank" href="https://images.pexels.com/photos/34950/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940">
<img src="https://images.pexels.com/photos/34950/pexels-photo.jpg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"/></a>
<h1>Clicking on the above thumbnail will open image in new tab</h1>
</body>
</html>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

썸네일 이미지 CSS를 만드는 방법은 무엇입니까?