카드와 같은 요소에 상자 그림자 추가
box-shadow 속성은 요소에 하나 이상의 그림자를 적용합니다. box-shadow 속성은 다음 값을 취합니다.
- offset-x(요소에서 그림자를 수평으로 밀어내는 거리),
- offset-y (요소에서 수직으로 그림자를 밀어내는 거리),
- 흐림 반경,
- 확산 반경 및 색상, 순서대로.
- blur-radius 및 spread-radius 값은 선택 사항입니다.
쉼표를 사용하여 각 상자 그림자 요소의 속성을 구분하여 여러 상자 그림자를 만들 수 있습니다. 다음은 대부분 투명한 검정색에서 약간의 흐림 효과가 있는 여러 그림자를 만드는 CSS의 예입니다.
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
Element는 이제 썸네일의 ID를 갖습니다. 이 선택기로 위의 예제 CSS 값을 사용하여 카드에 상자 그림자를 배치합니다.
<style>
h4 {
text-align: center;
background-color: rgba(45, 45, 45, 0.1);
padding: 10px;
font-size: 27px;
}
p {
text-align: justify;
}
.links {
text-align: left;
color: black;
}
.fullCard {
width: 245px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 10px 5px;
padding: 4px;
}
#thumbnail {
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.cardContent {
padding: 10px;
}
.cardText {
margin-bottom: 30px;
}
</style>
<div class="fullCard" id="thumbnail">
<div class="cardContent">
<div class="cardText">
<h4>Alphabet</h4>
<hr>
<p><em>Google was founded by Larry Page and Sergey Brin while they were <u>Ph.D. students</u> at <strong>Stanford University</strong>.</em></p>
</div>
<div class="cardLinks">
<a href="https://en.wikipedia.org/wiki/Larry_Page" target="_blank" class="links">Larry Page</a><br><br>
<a href="https://en.wikipedia.org/wiki/Sergey_Brin" target="_blank" class="links">Sergey Brin</a>
</div>
</div>
</div>