De quels outils CSS (framework, grilles, IDE, ..) ai-je besoin pour démarrer la conception web?

StackOverflow https://stackoverflow.com/questions/1612398

  •  06-07-2019
  •  | 
  •  

Question

Je construis un nouveau site Web basé sur la technologie Grails.

En ce qui concerne la conception graphique de mon site Web, je compte utiliser les services d’un concepteur de sites Web professionnel, mais dans l’intervalle, je dois effectuer moi-même quelques notions de base en conception graphique afin d’obtenir une "convivialité". version bêta.

J'ai lu le site stackoverflow.com mais je n'ai pas pu me décider. Voici ce que j'ai découvert: comment choisir un cadre CSS qu'est-ce-que-est-le-meilleur-css-grid-framework css-framework quoi-est-le-meilleur- css-framework-and-valent-ils-les-efforts

Mais malheureusement, il existe de nombreuses réponses contradictoires. Premièrement, certains disent que l'utilisation du framework CSS est une création à rebours et non une bonne chose. D'autres conseillent les grilles YUI, BluePrint, 960 gs, YAML ... Et beaucoup disent que Compass permet de développer des mises en page CSS facilement et réutilisables.

Donc, considérant que:

  • Je suis nouveau dans le monde des CSS et je n'ai pas l'intention d'être un concepteur de sites Web
  • Ma mise en page doit être conviviale (mais pas nécessaire, génial L & amp; F)
  • Il devrait être maintenable et facilement améliorable (par un concepteur de sites Web professionnel)
  • Facile à implémenter (pour avoir quelque chose rapidement)

Que me conseillez-vous pour commencer à concevoir le site Web de mon site?

Merci pour vos conseils.

Fabien

Était-ce utile?

La solution

First, if you don't intend to be a web designer, I'd suggest outsourcing your CSS. There are several websites where you can supply HTML or a Photoshop design and have it coded up for well under a grand (1k). Or get HTML/CSS designs free.

Then there is one thing you need to know and another two you need to work out:

  1. all HTML should be written in a semantic and valid manner: semantic = properly ordered headings, lists, no excessive divs etc.; valid = will pass WC3 validation tests. None of this is rocket science, but is still a skill that needs to be learned. Andy Clarke's Transcending CSS is a great book on semantic HTML/CSS. For ease of maintenance, the HTML and CSS should be tidy and consistently indented, etc.

  2. you need to determine whether you'll be needing an admin backend and database for managing content, or if you're just building a site consisting of static pages (i.e. html and css files, images and other media etc.). If it's the former, that's a whole other learning curve :-)

  3. what are your best skills? If you're a good designer, get other people to write the HTML/CSS, or use a ready-made template (there are many on the web) and customise it. Here's a good start for multi-column layouts. If you're a programmer, learn to use a framework like Django (Python), Titanium (Perl), something smaller in Ruby (because Ruby on Rails is a bit big to start with) or one in your favourite language.

Good CSS is a craft, and simplicity is the essence, but if you want to learn enough to get started, my advice would be to:

  1. understand inheritance (the 'cascade' in CSS) and the fact that anything can be a 'block', so don't use lots of nested divs just to apply a style. Instead, apply the style to the HTML element itself, or to the element only when it appears in a parent block (like a menu unordered list contained in a sidebar div);

  2. learn about block and inline elements (Web Design from Scratch is a great learning resource and I'd recommend it), and that CSS can change this behaviour;

  3. test in Firefox, then test in Internet Explorer. >= IE7's not so bad (but look out for HasLayout). What you can't tweak to get right in IE, use conditional comments to add CSS that only IE can see - never use CSS hacks - .htc files that add missing IE functionality (e.g. rollover styles on any element) are available;

  4. learn about CSS positioning, and use 'fixed' sparingly;

  5. put all your CSS in one file (for starters), and don't use inline CSS in the HTML;

  6. styling forms and form fields is almost a separate skill :-)

Use background images to add style, but also understand that you can offset and overlap images using positioning. You'll need to use PNGs for nice transparency, though. Oh yes, and opacity looks nice, but requires non-standard CSS for now. although the more flexible rgba (a=alpha) method is widely-supported. As do rounded corners, but both worth using.

I'd avoid CSS frameworks and resets for now - they'll complicate things at this stage by adding yet another DSL to learn (but read the arguments and the pros and cons). To avoid annoying default margins and padding, I always reset everything by doing html *, body * {margin: 0; padding 0;} then build padding and margins back in wherever needed - never been a problem so far :-)

Autres conseils

What do you advice me for getting started with the web design of my site?

Get Firebug plugin for Firefox now!

Primary CSS uses:

  • See which CSS rules apply
  • Change CSS in real time and see the affect
  • Inspect other websites to see how they do things

I would not be able to develop CSS (and other web related technologies) without this tool

Take a look at YUI CSS reset/base/font/grid

http://developer.yahoo.com/yui/3/cssreset/

And Grid 960 also has some nice layouts (search for their site in google)

I don't know what OS you are running, but if you are a Mac user, I suggest a great free tool for CSS: Xyle Scope. It's not an editor but a CSS viewer/scanner, it let you browse easily the CSS code of any web page so you can learn better how css works and you can analyze any well done layout on the web.

CSSEdit (Mac Only) is a good solution for writing Cascade sheets, easy to use, not expensive, and reach of features.

Fireworks: I think is a great software to draft your layouts and make some good graphical works!

Dreamweaver: it's an all in one solution for web developing ... it's a really great tool to easily maintain synched your remote version of the website with your local one.

Coda (Mac Only) is a very good alternative to Dreamweaver, even if it don't let you manage and edit the .htaccess files!

For coding your web site I suggest dreamweaver or Coda, but an other good alternative is BBEdit (Mac Only).

Bootstrap, Its the best css framework i can suggest, there is another one called foundation also but i prefer bootstrap more since it is popular among developers and is extendible. There are few more other frameworks, I wrote a blog about that, Here Read it too if you want http://www.andwecode.com/freebies/5-responsive-css-frameworks :)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top