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

CSS로 반응형 평가를 만드는 방법은 무엇입니까?


CSS로 반응형 평가를 작성하기 위한 코드는 다음과 같습니다. -

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
   .testimonialContainer {
      border: 2px solid rgba(0, 0, 0, 0.363);
      background-color: rgb(207, 235, 218);
      border-radius: 5px;
      padding: 16px;
      margin: 16px 0;
   }
   .profilePic {
      width: 100px;
      height: 100px;
   }
   .testimonialContainer::after {
      content: "";
      clear: both;
      display: table;
   }
   .testimonialContainer img {
      float: left;
      margin-right: 20px;
      border-radius: 50%;
   }
   .testimonialContainer span {
      font-size: 24px;
      font-weight: 500;
      margin-right: 15px;
      color: purple;
   }
   .testimonialContainer p {
      font-size: 18px;
      font-style: oblique;
   }
   @media (max-width: 500px) {
      .testimonialContainer {
         text-align: center;
      }
      .testimonialContainer img {
         margin: auto;
         float: none;
         display: block;
      }
   }
</style>
</head>
<body>
<h1>Responsive Testimonials Example</h1>
<div class="testimonialContainer">
<img class="profilePic" src="https://images.pexels.com/photos/614810/pexels-photo614810.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/>
<span>James Anderson</span>
<p>Shawn is a hard working and comitted individual</p>
</div>
<div class="testimonialContainer">
<img class="profilePic" src="https://images.pexels.com/photos/2128807/pexels-photo2128807.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"/>
<span>Steve Boulder</span>
<p>Shawn is great at managing people</p>
</div>
</body>
</html>

출력

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

CSS로 반응형 평가를 만드는 방법은 무엇입니까?