scrollbars in in line frame

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can someone help me i am busy with a website with a in line frame in it.
is the a way to change the in line frame scrollbar colour?
 
Create a class in css containing the scrollbar colors / info and apply the class to the inline frame
like this:

..myiframe{
background: #D3FDFE;
scrollbar-arrow-color: rgb(0,0,255);
scrollbar-base-color: rgb(0,128,128);
scrollbar-track-color: rgb(211,253,254);
scrollbar-darkshadow-color: rgb(0,128,128);
scrollbar-face-color: rgb(211,253,254);
}


And the assign it to the iframe :
<iframe class="myiframe"

Note that the leading period is used to create the class but it is *not* used to assign the class.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top