我使用radium
寫我的CSS在JS,因此,我不能使用僞類:after
和:before
(這會已經做出解決方案很簡單)。我應該如何創建如下圖所示的邊框。如何創建雙輪廓邊框?
這裏,灰色的邊框是顏色爲主要背景色,它是由白色邊界分開相同。
到目前爲止,我的CSS看起來像這樣
upload: {
position: "absolute",
left: "0",
top: "0",
overflow: "hidden",
width: "100%",
height: "100%",
borderRadius: "50%",
backgroundColor: "#ccdde5",
cursor: "pointer"
}
這會產生這樣的
使用白色邊框和你_bluish_箱陰影 - [小提琴](https://jsfiddle.net/amkda8hk/) – Vucko