So erstellen Sie ein Bandmuster auf der Seite eines Kartenblocks
P粉381463780
P粉381463780 2023-08-13 18:35:45
0
1
399
<p>Anhand des Screenshots unten benötige ich Hilfe beim Hinzufügen eines Blocks mit dem Status „Abgeschlossen“. </p> <p>Klicken Sie hier, um einen Beispiel-Screenshot anzuzeigen</p> <p>Derzeit nur ein Div mit der folgenden Konfiguration. </p> <pre class="brush:php;toolbar:false;"><div style="display:flex; flex-direction:column; align-items: center; justify-content: center; "> <img src="./PCIBT - Pacific Coast Institute of Business &amp; Technology_files/marketing_essentials.jpg "><a href="# ">Marketing Essentials</a> <img src="./PCIBT - Pacific Coast Institute of Business &amp; Technology_files/human_resource_tile_pic.jpg "><a href="# ">Personalmanagement</a> <img src="./PCIBT - Pacific Coast Institute of Business &amp; Technology_files/pm_fundamentals.jpg "><a href="# ">Grundlagen des Projektmanagements</a> </div></pre> <p><br /></p>
P粉381463780
P粉381463780

Antworte allen(1)
P粉523335026

不完美,但这是如何在卡片上完成的,position: absolute在蝴蝶结上允许您将蝴蝶结定位在所需位置的卡片上。

  .card {
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
  }
  
  .ribbon {
    position: absolute;
    top: 10px;
    left: 0px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 15px;
  }
<div class="card">
    <div class="ribbon">Side Offer</div>
    <h3>Card Content</h3>
    <p>This is some content inside the card.</p>
  </div>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage