![](https://maz.kr/wp-content/uploads/2024/11/howto_css_testimonials_thumbnail.png)
w3.css
추천사
CSS를 사용하여 반응형 추천글을 만드는 방법을 알아보자.
추천서 스타일링 방법
1단계) HTML 추가
<div class="container"> <img src="bandmember.jpg" alt="Avatar" style="width:90px"> <p><span>Chris Fox.</span> CEO at Mighty Schools.</p> <p>John Doe saved us from a web disaster.</p> </div> <div class="container"> <img src="avatar_g2.jpg" alt="Avatar" style="width:90px"> <p><span >Rebecca Flex.</span> CEO at Company.</p> <p>No one is better than John Doe.</p> </div>
2단계) CSS 추가
/* Style the container with a rounded border, grey background and some padding and margin */ .container { border: 2px solid #ccc; background-color: #eee; border-radius: 5px; padding: 16px; margin: 16px 0; } /* Clear floats after containers */ .container::after { content: ""; clear: both; display: table; } /* Float images inside the container to the left. Add a right margin, and style the image as a circle */ .container img { float: left; margin-right: 20px; border-radius: 50%; } /* Increase the font-size of a span element */ .container span { font-size: 20px; margin-right: 15px; } /* Add media queries for responsiveness. This will center both the text and the image inside the container */ @media (max-width: 500px) { .container { text-align: center; } .container img { margin: auto; float: none; display: block; } }
기본 예시
예제 보기참고
W3C School - Testimonials