【问题标题】:How to align by height all images inside a card deck?如何按高度对齐卡片组内的所有图像?
【发布时间】:2019-08-16 11:11:29
【问题描述】:

需要在引导程序 4 上对齐卡片组内的所有高度图像,而无需通过高度进行调整,因为响应式工作已经很好了。

我附加了一个 sn-p,您可以在其中看到我的问题,卡片的高度都相同,但图像的高度不同,我知道以前有人问过这个问题,但找不到一个好的解决方案。

<!DOCTYPE html>
<html>
<head>
	<title></title>
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
  <div class="row mb-5">
    <div class="col-12">  
		<div class="card-deck">
			<div class="card">
				<img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" class="card-img-top" alt="...">
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
				<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="...">
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
				<img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="...">
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
				<img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000" class="card-img-top" alt="...">
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			  </div>
		  </div>
    </div>
	</div>
</div>
</body>
</html>

【问题讨论】:

  • 第四张图片未加载..图片路径错误..图片不在文件中
  • 你想要所有的图片都一样高吗?
  • @Manikandan2811 图片来自谷歌,你可以得到你想要的任何东西,是的,我不想让所有图片都具有相同的高度,但不使用 height:100px 或 height:10vw 等,因为我想要提供引导程序的响应式
  • 您需要设置卡片中图片的高度。
  • ok.. 我可以在不使用响应的高度的情况下提供备用代码吗?

标签: html css bootstrap-4


【解决方案1】:

我认为您应该将所有图像放在div 标记中。然后给那个指定相同的高度。

    <!DOCTYPE html>
    <html>
    <head>
    	<title></title>
      <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    </head>
    <body>
    <div class="container">
      <div class="row mb-5">
        <div class="col-12">  
    		<div class="card-deck">
    			<div class="card">
    				<div class="my-auto" style="height: 100%">
                       <img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" class="card-img-top" alt="...">
                    </div>
    				<div class="card-body">
    					<h5 class="card-title">Card title</h5>
    					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
    				</div>
    			</div>
    			<div class="card">
    				<div class="my-auto" style="height: 100%">
            <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="..."></div>
    				<div class="card-body">
    					<h5 class="card-title">Card title</h5>
    					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
    				</div>
    			</div>
    			<div class="card">
    				<div class="my-auto" style="height: 100%">
            <img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="...">
            </div>
    				<div class="card-body">
    					<h5 class="card-title">Card title</h5>
    					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
    				</div>
    			</div>
    			<div class="card">
    				<div class="my-auto" style="height: 100%">
            <img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000" class="card-img-top" alt="...">
            </div>
    				<div class="card-body">
    					<h5 class="card-title">Card title</h5>
    					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
    					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
    				</div>
    			  </div>
    		  </div>
        </div>
    	</div>
    </div>
    </body>
    </html>

最好将所有图像设计成相同的高度。它可能会解决您的问题

【讨论】:

  • 在 sn-p 中提供的图像高度不同
  • 这是因为这些图像有几种尺寸。如果您需要这样的图像,那么最好将div 设置为相同的高度并让图像在里面
【解决方案2】:

如果您需要以相同的高度对齐图像,则所有图像的宽度和高度应相同。 'or' 我们也可以对齐下面的那些:

$(document).ready(function(){
  $('.card-deck .card').each(function(){
  var img_src = $(this).find(".card-img img").attr("src");
  $(this).find(".card-img").attr('style','background-image:url('+img_src+');');
  });
});
.card-deck .card .card-img {
 background-size:cover;
 background-position:top center;
 height:120px;
}
.card-deck .card .card-img img{
 display:none;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!DOCTYPE html>
<html>
<head>
	<title></title>
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
  <div class="row mb-5">
    <div class="col-12">  
		<div class="card-deck">
			<div class="card">
      <div class="card-img">
				<img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" class="card-img-top" alt="...">
        </div>
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
      <div class="card-img">
				<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="...">
        </div>
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
      <div class="card-img">
				<img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="...">
        </div>
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			</div>
			<div class="card">
      <div class="card-img">
				<img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000" class="card-img-top" alt="...">
        </div>
				<div class="card-body">
					<h5 class="card-title">Card title</h5>
					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
				</div>
			  </div>
		  </div>
    </div>
	</div>
</div>
</body>
</html>

正如我提到的那样,它是通过将该图像作为背景图像来完成的。如上例所示 请检查上面的代码....如果您需要任何更改,请告诉我

【讨论】:

    【解决方案3】:

    试试这个代码..

    HTML

    <!DOCTYPE html>
    <html>
    <head>
      <title></title>
      <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
    </head>
    <body>
    <div class="container">
      <div class="row mb-5">
        <div class="col-12">
        <div class="card-deck">
          <div class="card">
            <div class="image" style="background-image: url(https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60);"></div>
            <div class="card-body">
              <h5 class="card-title">Card title</h5>
              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
            </div>
          </div>
          <div class="card">
            <div class="image" style="background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP);"></div>
            <img src="" class="card-img-top" alt="...">
            <div class="card-body">
              <h5 class="card-title">Card title</h5>
              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
            </div>
          </div>
          <div class="card">
            <div class="image" style="background-image: url(https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg);"></div>
            <div class="card-body">
              <h5 class="card-title">Card title</h5>
              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
            </div>
          </div>
          <div class="card">
            <div class="image" style="background-image: url(https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000);"></div>
            <div class="card-body">
              <h5 class="card-title">Card title</h5>
              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
            </div>
            </div>
          </div>
        </div>
      </div>
    </div>
    </body>
    

    css

    .card .image {
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 66.6%;
        background-position: center;
      }
    

    【讨论】:

      【解决方案4】:

      如果您不需要图像的纵横比,您可以在您的 css 中使用此代码:

      .card-img-top: {height:250px}

      【讨论】:

        【解决方案5】:

        试试这个高度!

        .card-img{
          overflow:hidden;
          display:flex;
            height:200px;
          justify-content:center
        }
        .card-img img{
        height:100%;
          width:auto
        }
        
        @media(max-width:568px){
        .card-img{
        height:auto
        }
        .card-img img{
        height:auto !important;
        width:100%;
        }
        }
        <head>
        <title></title>
          <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
        </head>
        <body>
        <div class="container">
          <div class="row mb-5">
            <div class="col-12">  
        		<div class="card-deck">
        			<div class="card">
        				<div class="card-img">
                  <img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" class="card-img-top" alt="...">
                </div>
        				<div class="card-body">
        					<h5 class="card-title">Card title</h5>
        					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
        					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
        				</div>
        			</div>
        			<div class="card">
                <div class="card-img">
        				<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="..."></div>
        				<div class="card-body">
        					<h5 class="card-title">Card title</h5>
        					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
        					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
        				</div>
        			</div>
        			<div class="card">
        				<div class="card-img"><img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="..."></div>
        				<div class="card-body">
        					<h5 class="card-title">Card title</h5>
        					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
        					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
        				</div>
        			</div>
        			<div class="card">
        				<div class="card-img"><img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000" class="card-img-top" alt="..."></div>
        				<div class="card-body">
        					<h5 class="card-title">Card title</h5>
        					<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
        					<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
        				</div>
        			  </div>
        		  </div>
            </div>
        	</div>
        </div>

        【讨论】:

          【解决方案6】:
          <!DOCTYPE html>
          <html>
          <head>
              <title></title>
            <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
            <script
            src="https://code.jquery.com/jquery-3.4.1.min.js"
            integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
            crossorigin="anonymous"></script>
          </head>
          <body>
          <div class="container">
            <div class="row mb-5">
              <div class="col-12">  
                  <div class="card-deck">
                      <div class="card">
                          <img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60" class="card-img-top" alt="...">
                          <div class="card-body">
                              <h5 class="card-title">Card title</h5>
                              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
                              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
                          </div>
                      </div>
                      <div class="card">
                          <img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="...">
                          <div class="card-body">
                              <h5 class="card-title">Card title</h5>
                              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
                              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
                          </div>
                      </div>
                      <div class="card">
                          <img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="...">
                          <div class="card-body">
                              <h5 class="card-title">Card title</h5>
                              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
                              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
                          </div>
                      </div>
                      <div class="card">
                          <img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&mode=crop&quality=75&width=768&height=412&rnd=132022209070000000" class="card-img-top" alt="...">
                          <div class="card-body">
                              <h5 class="card-title">Card title</h5>
                              <p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
                              <p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
                          </div>
                        </div>
                    </div>
              </div>
              </div>
          </div>
          </body>
          <script>
          
              //If using jquery
                  var imageWidth = $('.card-img-top').width();
                  $('.card-img-top').css('height', imageWidth + 'px');
          
          
              //If using javascript
                  var imageWidth = document.getElementsByClassName('card-img-top');
                  for(var i=0; i<imageWidth.length;i++){
                      imageWidth[i].style.height = imageWidth[i].width + "px";
                  }
          </script>
          </html>
          

          【讨论】:

          • 不是一个好的解决方案,因为你失去了所有的纵横比,而且如果你在某些视图中调整它的大小,高度会破坏图像
          • 嘿,克里斯蒂安试试这个解决方案,它适用于所有设备。
          【解决方案7】:

          希望下面的代码有所帮助。我添加了一个带有thumb_container 类的图形标签来包装img 标签。

          <!DOCTYPE html>
          <html>
          
          <head>
          	<title></title>
          	<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
          
          <style>
          
          figure.thumb_container{
              margin: 0 0 1rem;
              padding: 0;
              display: block;
              box-sizing: border-box;
              width: 100%;
              height: auto;
              background: transparent;
              overflow: hidden;
              position: relative;
              padding-top: 100%;
          }
          img {
          border-top-left-radius: calc(.25rem - 1px);
              border-top-right-radius: calc(.25rem - 1px);
              position: absolute;
              left: 0;
              top: 0;
              width: 100%;
              height: 100%;
              padding: 0;
              margin: 0;
              display: block;
              box-sizing: border-box;
          }
          
          </style>
          </head>
          
          
          
          <body>
          	<div class="container">
          		<div class="row mb-5">
          			<div class="col-12">
          				<div class="card-deck">
          					<div class="card">
          						<figure class="thumb_container">
          							<img src="https://images.unsplash.com/photo-1503066211613-c17ebc9daef0?ixlib=rb-1.2.1&amp;ixid=eyJhcHBfaWQiOjEyMDd9&amp;auto=format&amp;fit=crop&amp;w=500&amp;q=60" class="card-img-top" alt="...">
          						</figure>
          						<div class="card-body">
          							<h5 class="card-title">Card title</h5>
          							<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
          							<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
          						</div>
          					</div>
          					<div class="card">
          						<figure class="thumb_container">
          							<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2QWzz0XPxgLu05I1BlN_eOMcxrOfFiQxAoGA_ICSouwnLOVbP" class="card-img-top" alt="...">
          						</figure>
          						<div class="card-body">
          							<h5 class="card-title">Card title</h5>
          							<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
          							<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
          						</div>
          					</div>
          					<div class="card">
          						<figure class="thumb_container">
          							<img src="https://assets.afcdn.com/story/20180709/1258610_w767h767c1cx304cy194.jpg" class="card-img-top" alt="...">
          						</figure>
          						<div class="card-body">
          							<h5 class="card-title">Card title</h5>
          							<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
          							<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
          						</div>
          					</div>
          					<div class="card">
          						<figure class="thumb_container">
          							<img src="https://www.aspinallfoundation.org/media/4231/img_2071.jpg?center=0.40740740740740738,0.57608695652173914&amp;mode=crop&amp;quality=75&amp;width=768&amp;height=412&amp;rnd=132022209070000000" class="card-img-top" alt="...">
          						</figure>
          						<div class="card-body">
          							<h5 class="card-title">Card title</h5>
          							<p class="card-text">This is a longer card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
          							<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
          						</div>
          					</div>
          				</div>
          			</div>
          		</div>
          </body>
          
          </html>

          【讨论】:

            猜你喜欢
            • 1970-01-01
            • 2020-07-04
            • 1970-01-01
            • 2021-11-22
            • 2022-01-23
            • 1970-01-01
            • 1970-01-01
            • 2021-09-26
            • 2011-07-21
            相关资源
            最近更新 更多