首页 > 解决方案 > 拉伸图像以适应特定的 div

问题描述

我有以下包含图像的 div: 在此处输入图像描述

这是它的 HTML 和样式:

 <ul id="noty_centerRight_layout_container" class="i-am-new" style="right: 20px; position: fixed; width: 310px; height: auto; margin: 0px; padding: 0px; list-style-type: none; z-index: 10000000; top: 339.5px;">
   <li style="overflow: visible; border-radius: 5px; background-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); color: rgb(68, 68, 68); width: 310px; cursor: pointer; min-height: 349px;" class="animated bounceIn">
      <div class="noty_bar noty_type_alert" id="noty_4752181183881090">
         <div class="noty_message pop-activity default-yellow" style="font-size: 13px; line-height: 16px; text-align: left; padding: 15px; width: auto; position: relative;">
            <div class="noty_text">
               <h3></h3>
               <p>                                                                                                                          <button title="Close (Esc)" type="button" class="popup-close">×</button></p>
               <p><a href="/half-price" target="_blank"><img style="width: 350px;" src="https://img.alleop.bg/catalog/Banners-Front/Popup-Product-banners/IMG_27082018_165243_0.png"></a></p>
               <p></p>
            </div>
         </div>
      </div>
   </li>
</ul>

我想让图像与具有 id 的 div 大小相同

noty_677289985142816800 另外,我添加了

标签: htmlcssimage

解决方案


<ul id="noty_centerRight_layout_container" class="i-am-new" style="right: 20px; position: fixed; width: 310px; height: auto; margin: 0px; padding: 0px; list-style-type: none; z-index: 10000000; top: 339.5px;">
<button title="Close (Esc)" type="button" class="popup-close">×</button> 
   <li style="overflow: visible; border-radius: 5px; background-color: rgb(255, 255, 255); border-color: rgb(204, 204, 204); color: rgb(68, 68, 68); width: 310px; cursor: pointer; min-height: 349px;" class="animated bounceIn">
      <div class="noty_bar noty_type_alert" id="noty_4752181183881090" style="background-color:blue;">
         <div class="noty_message pop-activity default-yellow" style="font-size: 13px; line-height: 16px; text-align: left; padding: 15px; width: auto; position: relative;">
            <div class="noty_text">
               <p><a href="/half-price" target="_blank"><img style="width:310px;margin-top:-28px;margin-left:-15px;height:311px;" src="https://img.alleop.bg/catalog/Banners-Front/Popup-Product-banners/IMG_27082018_165243_0.png"></a></p>
               <p></p>
            </div>
         </div>
      </div>
   </li>
</ul>

试试这个代码。


推荐阅读