• ARCHIVES 
  • » [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

Pages: 1..123456

[b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

eryl_213
» n00b
FTalk Level: zero
3
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

style type="text/css"> A:link { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:visited { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:active { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; } A:hover { text-decoration: value; [underline, overline, underline overline, line-through, blink, none] color:#000000; background-image: url(yourimage.gif); background-color: #000000; (Warning: the following cursor attribute is for those who use IE only!) cursor: value; [default, auto, wait, crosshair, hand, help, text, move, s-resize, e-resize, w-resize, ne-resize, nw-resize, se-resize, sw-resize] cursor: url('yourdomain.com/cursor.ani');} h1 {font-family: value; [your font name for headers (arial, verdana, etc.)] color: value; [your font color (#000000)] } p {font-family: value; [your font name for paragraphs (arial, verdana, etc.)] color: value; [your font color (#000000)] } body { background: #000000; background-image: url(value); [url of background image to be used, i.e. background.gif] background-repeat: value; [repeat, no-repeat, repeat-x, repeat-y] background-position: valueI valueII; [valueI: top, center, bottom, percentage, pixel number] [valueII: right, center, left, percentage, pixel number] background-attachment: value; [scroll, fixed] font-family: value; [your font name] color: #000000 ; letter-spacing: value; [any number value (3pt, 5pt)] font-weight: value; [lighter, normal, bold, bolder, any number value (100, 500, 900)] font-size: value; [xx-small, x-small, small, medium, large, x-large, xx-large, any number value (12 pt, 18 pt)] direction:rtl; [this reverses the entire site so the scrollbar is on the left] (Warning: the following scrollbar attribute is for those who use IE only!) scrollbar-face-color : #000000; scrollbar-highlight-color : #000000; scrollbar-3dlight-color : #000000; scrollbar-shadow-color : #000000; scrollbar-darkshadow-color : #000000; scrollbar-track-color : #000000; scrollbar-arrow-color : #000000; margin-top: 0; margin-bottom: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; padding-left: 0; padding-right: 0; } td { font-family: value; [your font name] color: #000000; padding-left: value; [2cm, 4cm etc.] padding-right: value; [2cm] padding-top: value; [2cm] padding-bottom: value; [2cm] padding: value; [2cm this is for all four sides] padding: value value; [2cm, 4cm : two values for four sides, add numerical value] } input, textarea { background: #000000 url(yourimage.gif); font-family: value; [your font name] color: #000000; border-style: value; [dotted, dashed, solid, double, groove, ridge, inset, outset] border-color: #000000; border-width: valuepx; [numerical value, 5, 6, 8...] } </style>
eryl_213
» n00b
FTalk Level: zero
3
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

body { background-color: mistyrose; background-image: url(http://i147.photobucket.com/albums/r299 … ripewp.jpg); color: mistyrose;background-attachment: fixed; font-family: verdana; font-size: 11; font-weight: bold; letter-spacing: 0pt; line-height: 10px; text-align: justify; } body {cursor: url(http://www.dressupmyspace.com/cursors/bunny/1.cur);} BODY{BORDER-TOP: 20px outset pink ; BORDER-BOTTOM:20px inset pink; BORDER-LEFT: 20px outset pink; BORDER-RIGHT:20px inset pink;} body { scrollbar-Face-Color:#FFC0CB; scrollbar-Highlight-Color:seashell; scrollbar-Shadow-Color:#FFC0CB; scrollbar-3dLight-color:seashell; scrollbar-Arrow-Color:seashell; scrollbar-Track-#FFC0CB:seashell; scrollbar-DarkShadow-Color:seashell} /*you forgot to terminate this line */ td, xmp { font-family: verdana; color: chocolate; font-size: 9; font-weight: normal; letter-spacing: 0pt; line-height: 12px; text-align: justify; } BODY { scrollbar-face-color:#FFFFFF; scrollbar-highlight-color:#FFF5F5; scrollbar-3dlight-color: salmon; scrollbar-darkshadow-color:#FFF5F5; scrollbar-shadow-color: salmon; scrollbar-arrow-color:#F9B7B7; scrollbar-track-color:#FFFFFF; BODY{BORDER-TOP: 20px outset pink ; BORDER-BOTTOM:20px inset pink; BORDER-LEFT: 20px outset pink; BORDER-RIGHT:20px inset pink;}html> <head> <style type="text/css"> /*this div is for my more about me*/ .div1 { font-family: tahoma; font-size: 10px; color: #000000; } /*this div is for my testimonials*/ #div2 { font-family: verdana; font-size: 10px; color: #FFFFFF; } </style> <title>Div</title> </head> <body> <div class="div1"></div><br><div id="div2"></div> </body> </html><style type="text/css"> /*this is a css style for paragraph*/ p { font-family: verdana; font-size: 10px; color: #000000; }<html> <head> <style type="text/css"> /*this div is for my more about me*/ .div1 { font-family: tahoma; font-size: 10px; color: #000000; } /*this div is for my testimonials*/ #div2 { font-family: verdana; font-size: 10px; color: #FFFFFF; } </style> <title>Div</title> </head> <body> <div class="div1"></div><br><div id="div2"></div> </body> </html>
mhedge
» FTalkGeek
FTalk Level: zero
1027
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

nice thread ate swit.. gudluck at this topic very useful css codes.. =)
killxromance
» FTalkAddict
FTalk Level: zero
315
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

nice trick =) :thumbsup: thnk's.. ______________________________ [align=right][img]http://i194.photobucket.com/albums/z39/joven0008/ftalk.png[/img][/align] [spoiler][align=center][img]http://i194.photobucket.com/albums/z39/joven0008/joven-2.gif[/img][/align][/spoiler]
12beRT12
» n00b
FTalk Level: zero
14
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

wow niCe lay", mAke it morE=(
michael james way
» FTalkAddict
FTalk Level: zero
374
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

nice layouts i like it :thumbsup: :thumbsup:
bedoLL bedoLL ahai
» n00b
FTalk Level: zero
22
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

nice layouts i like it :thumbsup: :thumbsup:
dic_latahzan
» n00b
FTalk Level: zero
91
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

:wallbash: numpang lewat...!!!
chipster489
» FTalkWorm
FTalk Level: zero
16296
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

[quote=dic_latahzan]:wallbash: numpang lewat...!!![/quote] [b]Wat's dis?, Speak English next tym. :) [/b]
xxlylexx
» FTalkAddict
FTalk Level: zero
303
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

lol those arent layouts
chipster489
» FTalkWorm
FTalk Level: zero
16296
0
1969-12-31

Re: [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

[font=Franklin Gothic Medium][b]Good guides. :) [/b][/font]
  • ARCHIVES 
  • » [b]What is CSS? [/b] CSS stands for cascading style sheets. Cascading style sheets are used to change properties like font face, size, font in tables, scrollbar color, link color and hover color, a

Pages: 1..123456

Board footer

© 2024 F Talk

Current time is 23:13

[ 9 queries - 0.040 second ]
Privacy Policy