gpt4 book ai didi

html - Bootstrap 边界半径 : 4px is adding shadow to input

转载 作者:太空宇宙 更新时间:2023-11-04 15:04:46 25 4
gpt4 key购买 nike

我正在制作一个带有 Bootstrap 的网站,当我将 border-radius: 4px 添加到输入/按钮时,也会添加阴影。

检查图像: http://i.stack.imgur.com/K9pz8.png

如何去除这个阴影?

最佳答案

class="form-control 添加到 input 元素,它将删除内部的阴影。

查看演示:

/* Latest compiled and minified CSS included as External Resource*/

/* Optional theme */

@import url('//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css');
body {
margin: 10px;
}
input {
border-radius: 5px;
margin: 10px;
}
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
<div class="input-group">
<input type="text" class="" placeholder="without class">
<input type="text" class="form-control" placeholder="with class">
</div>
</div>

关于html - Bootstrap 边界半径 : 4px is adding shadow to input,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29231313/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com