我正在尝试将图片置于div
标记内,该标记在Chrome上运行正常但在IE上却无效...
下面是我的HTML代码:
<div id="prod2" class="col-sm-4 portfolio-item custom">
<a href="#" class="hvr-bounce-in" data-toggle="modal">
<img src="img/portfolio/prod2.jpg" class="img-responsive img-responsive-cust" alt="">
</a>
<a href="#" class="portfolio-link" data-toggle="modal">
<h4>Enterprise Portal</h4>
</a>
</div>
下面是我的css:
#prod2{
background-color:#1FA4B6;
margin-left:3%
}
.img-responsive-cust{
display: block;
margin: auto;
text-align:center;
max-width: 70%;
max-height:70%;
padding: 10%;
}
我还不擅长CSS ...请帮我解决这个问题。