3 回答

茅侃侃
TA貢獻(xiàn)1842條經(jīng)驗(yàn) 獲得超22個(gè)贊
.child:focus{ background:#ccc;}
但是,要想在得到焦點(diǎn)時(shí),改變父標(biāo)簽的背景色,就不好辦,可以在得到焦點(diǎn)時(shí),改變子標(biāo)簽的背景色,如
<style>
.parent{background:#FF9966;}
.parent:focus .child{ background:red;}
</style>
<div class="parent" contentEditable=true>
<textarea class="child">child</textarea>
</div>
如果想有focus事件,就必須讓它是可編輯的,這里給DIV加上了contentEditable=true來讓它可編輯。
添加回答
舉報(bào)
0/150
提交
取消