Visual Basic - CSS al webbrowser

Life is soft - evento anual de software empresarial
 
Vista:

CSS al webbrowser

Publicado por Rubén (1 intervención) el 23/12/2006 15:15:52
Hola amigos, ¿alguien sabe cómo se pueden aplicar estilos al scroll del webbrowser? Muchas gracias por anticipado.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:CSS al webbrowser

Publicado por LLE (136 intervenciones) el 23/12/2006 18:27:14
Simpemente declara un estilo en la página y este se visualizará normalmete, por ejemplo

Entre los Head del html

<style type="text/css">
<!--
body {
SCROLLBAR-FACE-COLOR:#6699CC;
SCROLLBAR-HIGHLIGHT-COLOR: #6699CC;
SCROLLBAR-SHADOW-COLOR: #6699CC;
SCROLLBAR-3DLIGHT-COLOR: #FFFFFF;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
SCROLLBAR-TRACK-COLOR: #E3E3E3;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
}
-->
</style>
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar