搜索

首页  >  问答  >  正文

制作卡片块的侧边丝带样式的方法

<p>根据下面的截图,我需要帮助添加“已完成”状态的块。</p> <p>点击查看示例截图</p> <p>目前只是一个具有以下配置的div。</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="# ">Human Resource Management</a> <img src="./PCIBT - Pacific Coast Institute of Business &amp; Technology_files/pm_fundamentals.jpg "><a href="# ">Project Management Fundamentals</a> </div></pre> <p><br /></p>
P粉381463780P粉381463780458 天前382

全部回复(1)我来回复

  • 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>

    回复
    0
  • 取消回复