html - how do i specify psedo class attributes inline? -


I'm using this Wiki (Google Sites) style sheets to add or tag in HTML mode not supported (It's useless, I know). The only way to specify styles is to define the inline.

I have now inserted the menu bar. I have detected a pure CSS menubar, but I have trouble defining the hover class inline any thoughts?

Pseudo-class features are not well supported for inline styles, but you can use JavaScript Such as

  & lt; A href = "page.html" style = "color: red;" Onmouseover = "this.style.color = 'blue'" onmouseout = "this.style.color = 'red'" & gt; Link & lt; / A & gt;  

Comments