Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fastest Method to Learn Web Design for a Developer

Tags:

html

css

frontend

I am a Web developer and in my projects I have noticed that my weakest point is not being good at the front-end design. Relying on other designers can be annoying if they are not able to produce as quickly as I want.

My perspective on HTML/CSS is that it is basically a big hack that amazingly works. There are too many CSS and browser specific bugs/quirks to learn and remember them all without spending extreme amounts of time trying to untangle everything. Is there a fast track route to getting CSS into my brain? I have looked at some CSS books, but to me they really read as long lists of how to render things correctly in IE6 and how to make corners rounded. (Seriously why does it require so many tricks to make a sharp corner round? On any platform but the Web this would be called a major oversight.)

Does there exist something that does the analogous to CSS that jQuery does for JavaScript? Using jQuery you don't need to know JavaScript well to make things that work.

I am not interested in learning why IE6 does things in weird ways because I don't care about supporting it at all. I am more interested in a method of learning how to use CSS to do what I want without spending hours and hours reading obscure blogs.

like image 391
hekevintran Avatar asked Dec 24 '09 21:12

hekevintran


People also ask

How long will it take to learn web designing?

Web development bootcamps typically take 3-4 months to complete and teach all the skills you need to qualify for a web developer job. Learning web development from online courses could take anywhere from a single month to several years, depending on how much time you devote to your courses.

Can I learn web designing in 1 month?

If you want to develop a new site and also with beautiful web UI design, good content, it takes 1 month at least, or even longer.

Can I teach myself to be a web developer?

It doesn't matter if you do not have a computer science degree. It doesn't matter if you have not written a single line of code in your life. I will give you the exact roadmap that you can follow and become a Self-Taught Web Developer. If you are passionate about learning something, you can absolutely do it.


1 Answers

Pencil and paper to sketch out your ideas (think in boxes, not triangles or hexagons), then just break down all the little parts and learn how to do each one. No problem is too big that it can't be broken down. And, like always, TMTOWTDI!

Find examples and learn from it—at least that's how I started learning. Study the styles used and play around with them. When you find something that does what you like, create a mock-up and play around with it. Then test it for cross-browser compatibility.

If you get frustrated because something works in Firefox and Chrome, but not in IE (this will happen a lot), don't give up. I find cursing Bill Gates' name and all he stands for is a great stress reliever. :-)

A great tool I like to use is Firebug, a plugin for Firefox that allows you to, among a great many other things, edit CSS rules in-browser and see the results as soon as you do it.

I agree that CSS was kind of an afterthought in the web design world, but it's one hell of an invention and makes things so much easier and quicker to develop.

like image 98
amphetamachine Avatar answered Sep 22 '22 05:09

amphetamachine