suchen

Heim  >  Fragen und Antworten  >  Hauptteil

So erstellen Sie ein Bandmuster auf der Seite eines Kartenblocks

<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粉381463780P粉381463780458 Tage vor381

Antworte allen(1)Ich werde antworten

  • P粉523335026

    P粉5233350262023-08-14 13:09:51

    不完美,但这是如何在卡片上完成的,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>

    Antwort
    0
  • StornierenAntwort