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}
   .callout {
      position: fixed;
      bottom: 35px;
      right: 20px;
      margin-left: 20px;
      max-width: 300px;
   }
   .calloutHeading {
      padding: 25px 15px;
      background: rgb(68, 93, 235);
      font-size: 30px;
      color: white;
   }
   .calloutMessage {
      padding: 15px;
      background-color: #ccc;
      color: black
   }
   .close {
      position: absolute;
      top: 5px;
      right: 15px;
      color: white;
      font-size: 30px;
      cursor: pointer;
   }
   .close:hover {
      color: lightgrey;
   }
</style>
</head>
<body>
<h1>Callout Message Example</h1>
<h3>Product 2</h3>
<h3>Product 3</h3>
<h3>Product 4</h3>
<div class="callout">
<div class="calloutHeading">Check our offers</div>
<span class="close" onclick="this.parentElement.style.display='none';">×</span>
<div class="calloutMessage">
<p>Before you leave this page don't forget to check our other offers <a href="#">Check
Them</a></p>
</div>
</div>
</body>
</html>

출력

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

CSS로 콜아웃 메시지를 만드는 방법은 무엇입니까?