Test
Created | Updated Jun 1, 2004
Collection of Html stuff-personal reference
The basics
The style attribute.
Can be used for a variety of things, such as moving an image to anywhere on the screen: <P STYLE="position:absolute;">.
Absolute puts it in a specific position on the page. Relative is relative to where you are on the page.
<P STYLE="position:absolute|relative ; top:# ; left:# ; z-index: # ; filter:alpha(opacity100)|other stuff ">
Other stuff can also go there, such as attributes for the normal tags: text-size , border-style : inset|outset etc. , etc.
Nifty Stuff
In the Filter of the style attribute: (not saying I know much about this stuff...)
GLOW
Filter:
Progid:DXImageTransform.Microsoft.Glow(
Strength=15,Color=#FF0000 ); makes this:
. |
BLUR
STYLE="filter:Progid:DXImageTransform.Microsoft.Blur(Pixelradius=1 )
blurred text here |
Or you could try a higehr pixel radius:
blurred text here |
MIRROR
Mirror is excellent. absolutely.STYLE=" Position: Absolute;
Line-Height: 15px;
Filter:progid:DXImageTransform.Microsoft.BasicImage(
Mirror= 1);">
This is my mirrored text and images...|
|This is my mirrored text and images.
Where can I get more of them?