Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5167 links 

page 15 / 17

Liste des liens

324 results tagged css x
HTML5, CSS3, JS Demos, Creations and Experiments | CSSDeck
2012-11-20 1:19 - permalink -

Tout est dans le titre

css html javascript
- http://cssdeck.com/
CSS-Tricks
2012-09-1 15:55 - permalink -

Blog sur le css

blog css tutoriels
- http://css-tricks.com/
Responsive Table
2012-07-5 1:22 - permalink -

Comment afficher le contenu d'un tableau sur un petit écran ? Et faisant de chaque ligne un petit tableau à elle seule.

/*
    Max width before this PARTICULAR table gets nasty
    This query will take effect for any screen smaller than 760px
    and also iPads specifically.
    */
    @media
    only screen and (max-width: 760px),
    (min-device-width: 768px) and (max-device-width: 1024px)  {

        /* Force table to not be like tables anymore */
        table, thead, tbody, th, td, tr {
            display: block;
        }

        /* Hide table headers (but not display: none;, for accessibility) */
        thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        tr { border: 1px solid #ccc; }

        td {
            /* Behave  like a "row" */
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 50%;
        }

        td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
        }

        /*
        Label the data
        */
        td:nth-of-type(1):before { content: "First Name"; }
        td:nth-of-type(2):before { content: "Last Name"; }
        td:nth-of-type(3):before { content: "Job Title"; }
        td:nth-of-type(4):before { content: "Favorite Color"; }
        td:nth-of-type(5):before { content: "Wars of Trek?"; }
        td:nth-of-type(6):before { content: "Porn Name"; }
        td:nth-of-type(7):before { content: "Date of Birth"; }
        td:nth-of-type(8):before { content: "Dream Vacation City"; }
        td:nth-of-type(9):before { content: "GPA"; }
        td:nth-of-type(10):before { content: "Arbitrary Data"; }
    }

    /* Smartphones (portrait and landscape) ----------- */
    @media only screen
    and (min-device-width : 320px)
    and (max-device-width : 480px) {
        body {
            padding: 0;
            margin: 0;
            width: 320px; }
        }

    /* iPads (portrait and landscape) ----------- */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
        body {
            width: 495px;
        }
    }
css design tutoriels
- http://css-tricks.com/examples/ResponsiveTables/responsive.php#
Demo: Pure CSS GUI icons (experimental) – Nicolas Gallagher
2012-07-2 10:38 - permalink -

Trop fort : icon en css. Ne fonctionne pas avec IE7

css icones
- http://nicolasgallagher.com/pure-css-gui-icons/demo/
Free Typographic XHTML/CSS-Layouts For Your Designs | Smashing Coding
2012-06-25 18:49 - permalink -

Design libres à adapter (pour pluxml éventuellement).

css design free templates
- http://coding.smashingmagazine.com/2009/07/08/free-typographic-xhtmlcss-layouts-for-your-designs/
CSS3 - Columns
2012-06-17 23:13 - permalink -

Colonnes en CSS 3. Non supporté par IE

css
- http://www.quirksmode.org/css/multicolumn.html
Learn CSS Selectors interactively
2012-05-21 2:17 - permalink -
css tutoriels
- http://twostepmedia.co.uk/cssselectors/
css4design : des css pour votre design html
2012-02-20 11:52 - permalink -

Blog d'un intégrateur html et css avec du webdesign dedans et du référencement sur Google

blog css tutoriels
- http://css4design.com/
Font Squirrel | Handpicked free fonts for graphic designers with commercial-use licenses.
2012-01-26 0:6 - permalink -

Librairie de polices utilisables sur le web de façon commerciale

css design font
- http://www.fontsquirrel.com/
ttf2eot on the web!
2012-01-25 23:25 - permalink -

Convertir une font ttf en eot

css design font
- http://www.kirsle.net/wizards/ttf2eot.cgi
Not Just A Grid
2012-01-25 0:14 - permalink -

Framework css

css framework
- http://www.notjustagrid.com/default.asp
Font Squirrel | Download Hundreds of Free @font-face Fonts
2011-12-30 18:18 - permalink -

Font pour le web utilisable pour des sites commerciaux

css
- http://www.fontsquirrel.com/fontface
Nice Web Type – How to use CSS @font-face
2011-12-30 18:17 - permalink -
css
- http://nicewebtype.com/notes/2009/10/30/how-to-use-css-font-face/
Code Beautifier:CSS Formatteur et Optimiseur basé sur CSSTidy
2011-12-10 10:5 - permalink -
code css formateur
- http://www.codebeautifier.com/
Bienvenue sur Creatiq.fr | Envie d'apprendre et de progresser ? Sur Creatiq.fr, vous trouverez des tutoriels vidéos et écrits concernant le développement web et le webdesign
2011-11-25 2:38 - permalink -

Tutoriels sur le web (framework, ruby, php, CakePHP...)

CakePHP css framework jquery php ruby
- http://www.creatiq.fr/
Themify Demos - Simfo
2011-11-20 17:14 - permalink -

Bibliothèque de thèmes

css design
- http://themify.me/demo/#theme=simfo
Take a Tour — Apollo
2011-11-20 17:14 - permalink -

Inspiration design

css design
- http://www.apollohq.com/tour/
CSS Shorthand Guide
2011-11-20 17:12 - permalink -

Tutoriel css

css tutoriels
- http://www.dustindiaz.com/css-shorthand/
HTML5 Boilerplate - A rock-solid default template for HTML5 awesome.
2011-11-20 17:9 - permalink -
css design html5
- http://html5boilerplate.com/
Ajouter une classe CSS dans BODY ou HTML pour Internet Explorer (IE6 — IE9)
2011-11-20 17:8 - permalink -

Modifier la css en fonction du navigateur

css tutoriels
- http://css4design.com/ajouter-une-classe-css-dans-body-ou-html-pour-internet-explorer-ie6-ie7-ie8-ou-ie9
page 15 / 17


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2