拉伸图像以适合特定的div

时间:2018-08-28 06:58:51

标签: html css image

我有以下包含图像的div: enter image description here

这是它的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   另外,我还添加了

2 个答案:

答案 0 :(得分:0)

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

尝试此代码。

答案 1 :(得分:0)

您可以将其设置为下面上面的div链接的背景图像。

<div class="noty_message pop-activity default-yellow" style="font-size: 13px; line-height: 16px; text-align: left; padding: 15px; width: auto; position: relative; background: url('https://img.alleop.bg/catalog/Banners-Front/Popup-Product-banners/IMG_27082018_165243_0.png'); background-size: 100%; height: 220px;">
                    <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>

css已添加:

background: url('https://img.alleop.bg/catalog/Banners-Front/Popup-Product-banners/IMG_27082018_165243_0.png'); 
background-size: 100%; 
height: 220px;