본문 바로가기
css trick & base

부트스트랩 토스트

by uni:D 2025. 2. 26.
반응형
<a href="#" data-toast="notification-1" data-bs-dismiss="toast">
            <i class="fab font-17 fa-apple color-gray-dark"></i>
            <span>iOS Style</span>
            <i class="fa fa-angle-right"></i>
        </a>

 

 

<div id="notification-1" data-bs-dismiss="toast" data-bs-delay="2000" data-bs-autohide="true" class="toast w-auto notification notification-ios bg-dark-dark notch-push mt-3">
  <span data-bs-dismiss="toast" class="notification-icon">
      <i class="fa fa-bell"></i>
      <em>Enabled</em>
      <i  class="fa fa-times-circle"></i>
  </span>
  <h1 class="font-15 color-white mb-n3">All Good</h1>
  <p class="pt-2">
      I'm a notification. I show at the top or bottom of the page.
  </p>
</div>
반응형

'css trick & base' 카테고리의 다른 글

겹치는거  (0) 2025.03.06
아이폰 사파리 vh + dvh( dynamic vh)  (0) 2025.03.05
보더 테이블  (0) 2025.02.20
부트스트랩 딤 클릭방지  (0) 2025.02.05
ios확대 축소막기  (0) 2025.02.03