html - CSS: Target body on Input:focus -
this question has reply here:
complex css selector parent of active kid [duplicate] 10 answersive been looking around have had no luck possible (with css) target body tag on input:focus
illustration when clicks on input box want body have background:red
, im not sure if possible.
thanks in advance.
connor
this not possible css. can achieved javascript / jquery :)
this how in jquery,
$("input[type=text]").focus(function() { $("body").css({"background-color" : "red"}); });
html css css3
No comments:
Post a Comment