Buton listesi bileşeni
Last updated on 11/6/2024@mrbirddev
Görsel ve simge
Simge ayarlamak istiyorsanız, görsel alanını boş bırakmalısınız.
Ve görseli/simgeyi sağ tarafa koymak istiyorsanız, Buton resim CSS öğesine aşağıdakileri uygulayın.
left: auto;
right: .5rem;
DOM yapısı
Bir Düğme listesi bileşeni, HTML DOM yapısında bu şekilde oluşturulur.
<div style="display: flex; width: 100%"> <!-- CSS applies here -->
  <a href="" ...> <!-- Buton CSS applies here-->
    <div
      style="position: absolute; top: .5rem; bottom: .5rem; overflow: hidden; left: .5rem;"
      <!-- Buton resim CSS applies here-->
    >
      {image || icon}
    </div>
    <span>
      {button text}
    </span>
  </a>
  ...
</div>
Last updated on 11/6/2024@mrbirddev