在CSS魔法堂:改變單選框顏色就這麼吹毛求疵!中咱們要模擬原生單選框經過Tab
鍵得到焦點的效果,這裏涉及到一個經常被忽略的屬性——outline
,因爲以前對其印象確實有些模糊,因而本文打算對其進行稍微深刻的研究^_^javascript
用於建立可視對象的輪廓(元素的border-box),如表單按鈕輪廓等。css
/* 輪廓線顏色
* invert表示爲顏色反轉,即便輪廓在不一樣的背景顏色中均可見
*/
outline-color: invert | <color_name> | <hex_number> | <rgb_number> | inherit
/* 輪廓線樣式 */
outline-style: none | dotted | dashed | solid | double | groove | ridge | inset | outset | inherit
/* 輪廓線寬度 */
outline-width: medium | thin | thick | <length> | inherit
/* 一次性設置輪廓線的顏色、樣式 和 寬度 */
outline: <outline-color> <outline-style> <outline-width>;
/* 輪廓線的偏移量,大於0則輪廓擴大,小於0則輪廓縮小 */
outline-offset: 0px;
複製代碼
outline
做爲CSS2.1規範,所以IE6/7/8(Q)均不支持,在IE8下寫入正確的DOCTYPE則支持outline屬性。 outline-offset
則IE下均不支持。html
若要在IE6/7/8(Q)下隱藏outline效果,則在元素上添加hideFocus
特性便可。java
outline:0
和outline:none
的區別在Chrome下執行以下代碼bash
<style type="text/css">
.outline0{
outline: 0;
}
.outline-none{
outline: none;
}
</style>
<a href="#" class="outline0">outline: 0</a>
<a href="#" class="outline-none">outline: none</a>
<script type="text/javascript">
const $ = document.querySelector.bind(document)
const print = console.log.bind(console)
const cssProps = ["outline-width", "outline-style", "outline-color"]
const slctrs = [".outline0", ".outline-none"]
slctrs.forEach(slctr => {
styles = window.getComputedStyle($(slctr))
cssProps.forEach(cssProp => {
print("%s, %s is %s", slctr, cssProp, styles[cssProp])
})
})
</script>
複製代碼
結果:app
.outline0, outline-width is 0px
.outline0, outline-style is none
.outline0, outline-color is rgb(0, 0, 238)
.outline-none, outline-width is 0px
.outline-none, outline-style is none
.outline-none, outline-color is rgb(0, 0, 238)
複製代碼
outline
僅僅爲設置單個或多個具體的outline
屬性提供更便捷的API而已,所以outline:0
和outline:none
本質上效果是一致的。ide
自從有了border-radius
後,咱們就能夠經過CSS製做圓角矩形、圓形等圖形,甚至連box-shadow
也受到border-radius
影響從而實現元素陰影也能作到圓角的效果。那麼outline
是否也能作出圓角的效果呢?答案是否認的。那是由於outline
的做用原本就是用於勾勒出元素所佔的空間輪廓,經過border-radius
雖然實現了圖形視覺上的圓角,但該元素所佔位置空間一點都沒有變化,仍是那個有棱有角的方形。wordpress
<style type="text/css">
.round{
width: 100px;
height: 100px;
background: yellow;
border-radius: 50%;
outline: solid 1px red;
}
</style>
複製代碼
在Chrome下outline
僅限於標識當前元素自身所佔的位置空間(border-box),但在FireFox下則包含子孫元素所佔的位置空間。ui
<style type="text/css">
.outline{
width: 13px;
height: 13px;
outline: 1px solid red;
}
</style>
<div class="outline"></div>
<script type="text/javascript">
const el = document.querySelector(".outline")
el.textContent = !!~navigator.appVersion.indexOf("Chrome") ? "Chrome" : "FireFox"
</script>
複製代碼
尊重原創,轉載請註明來自:www.cnblogs.com/fsjohnhuang… ^_^肥仔Johnspa
www.xuebuyuan.com/757567.html www.zhangxinxu.com/wordpress/2…