|
Posted by Brynn on 11/29/07 07:54
On Nov 28, 2:23 pm, "Beauregard T. Shagnasty"
<a.nony.m...@example.invalid> wrote:
> Brynn wrote:
> > "Paul" wrote:
> >> May I obtain the above effect using Frontpage or writing codes in
> >> html?
>
> >> Have you some code or some link for me to test? Thanks
>
> > Here is a nice lesson with CSS, Javascript, and Html. Just copy
> > everything below into a file and play.
>
> > <html><body>
>
> > <!--
> > The CSS
> > We will make 2 different "classes" ... one with the first style ..
> > then one with the mouse over style.
> > -->
> > <style type="text/css">
> > .theStyle1, .theStyle2 {font: bold 10pt verdana; padding: 4px;}
>
> Please don't recommend using points (points are for printing), nor
> Verdana. See this:http://k75s.home.att.net/fontsize.html
>
> > .theStyle1 {background-color: #E3EEE2; color: black;}
> > .theStyle2 {background-color: #0E4E07; color: white;}
> > </style>
>
> > <!-- Now the button -->
> > <input type="button" class="theStyle1" value="Test Button"
> > onMouseOver="this.className='theStyle2';"
> > OnMouseOut="this.className='theStyle1';">
>
> Why mess with that when you can do it with CSS. Here's a sample of
> buttons I wrote years ago.http://k75s.home.att.net/hover3d.html
>
> --
> -bts
> -Motorcycles defy gravity; cars just suck
What are you testing your code in there bud ... your buttons only work
in IE6 if you mouse over the text ... they work in firefox ok though.
In IE6 if you highlight the button part without the text, your buttons
do nothing.
[Back to original message]
|