bootstrap 响应式图片自适应图片大小

<img src="..." class="img-responsive center-block" >

或者

$(window).load(function(){

 
    $(".panel-body img").addClass("img-responsive center-block");
 
})
我的应用
<img id=”logo” src=”../../assets/pic/home/logo.png” >

#logo{
display: block;
max-width: 100%;
height: 40px;
}


关注公众号,了解更多it技术(it问答网

selenium Cannot call non W3C standard command while in W3C mode解决

在使用selenium进行UI自动化,控制页面做上下滑动的时候遇到了如下报错selenium.common.exceptions.WebDriverException: Message: unknown command: Cannot call non W3C standard command while in W3C mode

解决方法:

opt =webdriver.ChromeOptions()
opt.add_experimental_option('w3c',False)
dr= webdriver.Chrome(chrome_options=opt)

 

 


关注公众号,了解更多it技术(it问答网