我有以下款式的紐扣
button {
background: none;
border-color: #87db41;
color: #87db41;
padding: 5px 5px;
width: 30%;
text-align: center;
&: active {
border-color: @aviata-color;
}
}
<button>Subscribe</button>
使用以下CSS規則:
:active { border-style: outset;}
button {
background: none;
border-color: #87db41;
color: #87db41;
padding: 5px 5px;
width: 30%;
text-align: center;
outline: none;
}
button:active {
border-style: outset;
}
<button>Subscribe</button>
只是一個建議。
當您使用bootstrap時,您可以在bootstrap.css代碼中看到:
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: normal;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-ms-touch-action: manipulation;
touch-action: manipulation;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
color: #333;
text-decoration: none;
}
.btn:active,
.btn.active {
background-image: none;
outline: 0;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
cursor: not-allowed;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
opacity: .65;
}
a.btn.disabled,
fieldset[disabled] a.btn {
pointer-events: none;
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default:focus,
.btn-default.focus {
color: #333;
background-color: #e6e6e6;
border-color: #8c8c8c;
}
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover,
.btn-default.active:hover,
.open > .dropdown-toggle.btn-default:hover,
.btn-default:active:focus,
.btn-default.active:focus,
.open > .dropdown-toggle.btn-default:focus,
.btn-default:active.focus,
.btn-default.active.focus,
.open > .dropdown-toggle.btn-default.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
background-image: none;
}
.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
background-color: #fff;
border-color: #ccc;
}
.btn-default .badge {
color: #fff;
background-color: #333;
}
<button class="btn btn-default">BTN DEFAULT</button>
只需將邊框樣式設置為實心,并包含一些活動/焦點狀態
button {
background: none;
border-style: solid;
border-color: #87db41;
color: #87db41;
padding: 5px 5px;
width: 30%;
text-align: center;
&: active {
border-color: @aviata-color;
}
}
button.active.focus, button.active:focus,
button.focus, button:active.focus,
button:active:focus, button:focus {
outline: none;
box-shadow: none;
background-color: white;
}
<button>Subscribe</button>
默認情況下,button獲取屬性-webkit-appearance: button或任何其他依賴于瀏覽器的屬性。
您可以用不同的方式重置該樣式。
使用邊框:無;甚至是邊框式的:開頭;因為它會把外觀變成沒有。
如果你使用bootstrap,那么請使用bootstrap類btn,btn-primary,然后在你的css中放入這段代碼。希望對你有幫助。
.btn {
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
-ms-border-radius: 0px;
-o-border-radius: 0px;
border-radius: 0px;
outline: none;
border: none;
}
.btn:active {
border-style: outset;
border: none;
}
<button class="btn btn-primary">Subscribe</button>
您可以添加這個CSS屬性:
按鈕{大綱:無!重要;}
如果你使用自舉按鈕,那么你需要按照下面的代碼來消除它的默認效果。
您可以使用這個CSS:
button.<classname or id >{
box-shadow:none !important;
border-style:none;
}
例如: 我想刪除我的漢堡按鈕的效果 所以我在這里用了同樣的代碼。
<button class="navbar-light hamburger navbar-toggler collapsed" type="button" data-bs-toggle="collapse"
button.hamburger{
box-shadow:none !important;
border-style:none;
}
上一篇vue.org cn
下一篇c 的對象轉換json