background preloader

Html en css

Facebook Twitter

Selectivizr - CSS3 pseudo-class and attribute selectors for IE 6-8. The first commented line is your dabblet’s title ✿ dabblet.com. 0to255. Typetester – Compare fonts for the screen. 40+ Useful Online Generators For Web Designers. Oct 11 2010 Generators can be a great way to save time in your web design projects.

High-quality generators can create graphics or code or even layouts in a matter of seconds or minutes, things that might take an hour or more if done by hand. Below are some useful generators to help you speed up your web design process. There’s everything from color scheme tools to complete layout generators included. Color Schemes A good color scheme is the cornerstone of a good website design.

Color Scheme Designer 3Color Scheme Designer 3 has a really fantastic user interface that’s both attractive and easy to use. ColorSchemer Online V2ColorSchemer lets you create color palettes around RGB or HEX values, or using a color selector tool. KulerAdobe’s Kuler is one of the best color scheme tools available, with multiple options for both creating and finding color schemes. Color Palette GeneratorThis generator creates a color palette based on an image.

Layouts CSS3 Please! Graphics Other Generators Conclusion. Position. With the knowledge of CSS Positioning you will be able to manipulate the exact position of your HTML elements. Designs that previously required the use of JavaScript or HTML image maps may now be done entirely in CSS. Not only is it easier to code, but it also loads much quicker! Relative positioning changes the position of the HTML element relative to where it normally appears. If we had a header that appears at the top of our page, we could use relative positioning to move it a bit to the right and down a couple of pixels. Below is an example. CSS Code: h3 { } p { } You probably noticed that you define the four possible directions (left, right, up, and down) using only two (left and top). Move Left - Use a negative value for left. Display: Remember, relative positioning moves stuff from where it would normally be. With absolute positioning, you define the exact pixel value where the specified HTML element will appear.

Try it out!