Hi All, I want to apply styles to my struts-html tags for eg: in jsp: --------------------------------------------- <html:link action="home">HOME</html:link> ----------------------------------------------
and in my css i want to use something like this: ------------------------------------------------- #navigation html:link.active{ background-color: #ABC; } ---------------------------------------------------
can we do it? it does not seem to be working , anything wrong with the code? -Thanks
CSS is a client-side technology, Struts is a server-side technology. Your CSS knows nothing about your Struts tags. These tags get translated into HTML which is sent to the browser. It is that HTML that your CSS must match.