background preloader

WebDesign

Facebook Twitter

Gabarit 05: menu vertical à gauche, colonnes de même hauteur, largeur fluide. Code HTML et CSS Ce gabarit est structuré de la manière suivante: <div id="global"><div id="entete">... </div><div id="navigation">... </div><div id="contenu">... </div></div> Il est mis en forme par deux feuilles de styles: base.css (mise en forme minimale du texte, commune à tous les gabarits) modele05.css, qui contient tous les styles propres à ce gabarit, et que je vous invite à consulter.

Pour voir le détail du code HTML de cette page, utilisez la fonction d'affichage de la source de votre navigateur web (ex: «Affichage > Code source de la page»). À noter L'aplat de couleur qui remplit à la fois l'en-tête et la colonne de gauche est en réalité une couleur de fond appliquée au conteneur global (div#global).

Cross Browser Compatibility Check Tools | Ivan Kristianto Blog. Cross browser compatibility is a must if you are working as a web designer, you need to test all your design in different web browser. As today top web browsers are Mozilla Firefox, Google Chrome, Safari, Opera and Internet Explorer. And not all the browser have the same render result to your design code. You have to test and tweak your html code and css code. Cross-browser refers to the ability for a website, web application, HTML construct or client-side script to support all the web browsers. Maybe you can say, all i have to do is install all the web browser and open your design on all that browser and see the result.

Cross Browser Compatibility Tester Online 1. Browsershots is a free and most popular cross browser compatibility test utility for web designers. 2. Created by Spoon.net, this page allows you run cross browser compatibility check including IE, Firefox, Safari, Chrome and Opera right from your browser. 3. IE NetRenderer is free cross browser compatibility tester. 4. 5. 6. Faire un dump de son svn et le restaurer « GeeK`s Lifez. Un petit memo pour sauvegarder et restaurer son repository sur une machine distante. Ce petit memo a pour but de vous montrer comment faire un dump d’un repository et le remettre ne place sur une machine distante: Dans une premier il va falloir se connecter en root sur la machine de l’actuel repository, puis, partons du principe que que repository actuel se trouve dans: /path/to/repositoryname # svnadmin dump /path/to/repositoryname > /tmp/repositoryname.dump Vous allez a la fin de cette operation obtenir un dump de votre svn dans le fichier: /tmp/repositoryname.dump Rapatriez ce fichier sur la machine qui servira desormais de repository Puis creer un repository: # svnadmin create /path/to/new/repository Puis restaurez votre svn: # svnadmin load /path/to/new/repository < /path/to/repositoryname.dump Et bien voila, c’est fait ;)

Tutorials and Examples for a Quick Start! Comment traiter du JSON pour produire du HTML en Javascript ? GuiStuff - Coding, formats, standards, and other practical things. Learn CSS Positioning in Ten Steps: position static relative absolute float. 1. position:static The default positioning for all elements is position:static, which means the element is not positioned and occurs where it normally would in the document. Normally you wouldn't specify this unless you needed to override a positioning that had been previously set. 2. position:relative If you specify position:relative, then you can use top or bottom, and left or right to move the element relative to where it would normally occur in the document.

Let's move div-1 down 20 pixels, and to the left 40 pixels: Notice the space where div-1 normally would have been if we had not moved it: now it is an empty space. It appears that position:relative is not very useful, but it will perform an important task later in this tutorial. 3. position:absolute When you specify position:absolute, the element is removed from the document and placed exactly where you tell it to go. Let's move div-1a to the top right of the page: What I really want is to position div-1a relative to div-1.

Footnotes 10. CSS Reference Index.