I recently saw an article about using css shorthand I began to wonder if anyone was really not using shorthand for their css documents. I cant say for sure but it seems to save a lot of time overall. It is not that complicated either. for instance:
#wrapper{
margin-top: 5px;
margin-right: 4px;
margin-bottom: 3px;
margin-left: 2px;
}
becomes
#wrapper {
margin: 5px 4px 3px 2px;
}
also if the top two margins are the same, as the side tto are, you could do it like this:
#wrapper {
margin: 5px 4px;
(that would be 5px from the top and bottom, and 4px from each the left and right)
so if any one is till writing each of these seperatley hopefully they will now take advantage of the shorthand!
Thursday, August 21, 2008
Tuesday, August 12, 2008
I used jquery for basically the first time today. it was pretty exciting. I have to admit I think i am going to go crazy now adding it to everything. navigation, galleries.... I am not that good at debugging for it yet, (when implementing). luckily there are people here that are! so now I can go home and spend all my time searching the web for itsy bitsy jquery widgets and such. yay!
Friday, August 8, 2008
well its Friday and looking back over the week i am pretty happy with what i got done. I managed to stick to my promise to myself to primarily use illustrator for any photo editing or designing to help me get used to it. I got the dynamic web products order form to paypal working and today i worked on some images for the different products. chances are I will do more work on this over the weekend
Subscribe to:
Posts (Atom)