Log in

View Full Version : Who can code CSS?



Cransie
19-08-2005, 08:57 AM
I need someone who can code CSS for my websitw Thank you, or you know a good tutorial. ;)

iRoss
19-08-2005, 09:05 AM
Have a look through here... http://www.pixel2life.com/tutorials/CSS_Stylesheets/Basics/

Dan Williamson
19-08-2005, 09:08 AM
I Can Code Quit A Bit Of CSS.

splintercell!
19-08-2005, 09:22 AM
its really easy :)

TheGSP
19-08-2005, 11:32 AM
Hey,

CSS is pretty easy. http://www.w3schools.com/css/css_intro.asp Is a good tutorial.

мϊкэ
19-08-2005, 11:42 AM
Have a look through here... http://www.pixel2life.com/tutorials/CSS_Stylesheets/Basics/

OMG ross stealing my idea of pixel2life damn you :@ and i wouldnt really say you code css "/, if you want to add css to a certain part of something eg part of a table you would do this



<td class="example"></td>

and then in the css document you would put



.example {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
color: #FFFFFF;
border: 1px solid #000000;
background-color: #203949;
}

but were i have put


font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-style: normal;
color: #FFFFFF;
border: 1px solid #000000;
background-color: #203949;

you would change to whatever css you want to use, another way of doing this would be to include the css in the td tag so it would be


<td style="YOUR CSS"></td>

so using the same css as before it would look like


<td style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; color: #FFFFFF; border: 1px solid #000000; background-color: #203949;"></td>

this would do exactly the same thing :D

Mentor
19-08-2005, 11:51 AM
Thats just inline css? if your only useing something once you may as well, css in the main parts only for reuseable styles realy "/

css is simple thogh, probly easyer than html formating in some ways "/

мϊкэ
19-08-2005, 12:29 PM
Thats just inline css? if your only useing something once you may as well, css in the main parts only for reuseable styles realy "/

css is simple thogh, probly easyer than html formating in some ways "/

yer, i said if you want to add css to certain bits use this or othewise you use

body {
YOUR CSS
}

Mentor
19-08-2005, 12:31 PM
indeed

body {
YOUR CSS
}

^^attches to elment

.somthing {
YOUR CSS
}

makes a class

#moo {
YOUR CSS
}

attches to an ID

мϊкэ
19-08-2005, 12:59 PM
you can also use the start of any tag to define it for all of them

img {
}

input {
}

textarea {
}

table {
}

td {
}

you can also use multiple ones seperating them with a comma

img, input, textarea, table, td {

}

Want to hide these adverts? Register an account for free!