CSS 이미지 섀도우 구현 3부작
클립보드에 내용 복사
코드:
.img-wrapper {
background: url(shadow.gif) no-repeat bottom right;
clear: right;
float: left;
}
음영 효과가 있는 그림을 표시하기 위해서는 그림의 마이너스 간격을 설정해야 한다.(섀도우 효과는 오른쪽 및 아래에 있으므로 전체 이동에 픽셀 5개를 설정합니다.)
클립보드에 내용 복사
코드:
.img-wrapper img {
margin: -5px 5px 5px -5px;
}
----------------------------------------------------------------FirstTo create the effect, you first need to apply your shadow graphic to the background of thewrapper div. Because divs are block-level elements, they stretch horizontally, taking up allthe available space. In this situation we want the div to wrap around the image. You cando this by explicitly setting a width for the wrapper div, but doing so reduces the usefulnessof this technique. Instead, you can float the div, causing it to “shrink-wrap” on modernbrowsers, with one exception: IE 5.x on the Mac..img-wrapper {background: url(shadow.gif) no-repeat bottom right;clear: right;float: left;}To reveal the shadow image and create the drop shadow effect (see Figure 3-13), you needto offset the image using negative margins:.img-wrapper img {margin: -5px 5px 5px -5px;}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.