html - Can we set style to title tag in header -



html - Can we set style to title tag in header -

can set style title tag in header in html head following. tried did not work..

<title style="font-style:italic;"> title</title>

you can apply css <title> element, not though style attribute (since "all elements base, basefont, head, html, meta, param, script, style, title").

i'm not aware of browser apply css rendering of title in browser tabs or title bars though.

you can, however, like:

head { display: block; } title { display: block; font-size: 200%; font-weight: bold; }

html css title

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -