1
這是Hapenning-我需要將元素的背景圖像移動到元素外部。有可能使用CSS或Javascript嗎?
我需要這個 -
我需要移動我的元素的背景圖像(橙色圓圈)的元素之外。有可能使用CSS或Javascript嗎? 由於HTML的結構,我不能接受div內的另一個元素。只有在可能的情況下才需要使用它。
.element:after {
display: inline-block;
content: "";
height: 250px;
width: 217px;
position: absolute;
border-bottom: 1px solid #ff9400;
border-left: 1px solid #FF9400;
z-index: 15;
background: url('files/images/icon5.png') no-repeat;
background-position: 100% 100%;
}
只需要將我的icon5.png移動到元素框外。
你想讓它保持可見嗎?或沒有? –
任何示例html或它現在看起來像什麼vs你想要它看起來像什麼? – stevenw00
@Wes Foster是的,我想保持它可見。 –