IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

intégration Nifty Corners


Sujet :

JavaScript

  1. #1
    Membre averti Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Points : 345
    Points
    345
    Par défaut intégration Nifty Corners
    Salut à tous...

    J'essaie désespérément d'intégrer Nifty Corners (pour ceux qui ne connaissent pas voici l'url : NiftyCorners )

    La gestion de mes css se passe nickel mais pas de coins arrondis a l'horizon !!!
    Voici quelques bout de codes :
    HTML :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>.:: Licence-Taxi.fr ::. Le portail de la licence de Taxi en France</title>
    <link href="css/design.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="css/menu_move.css" type="text/css" media="screen">
    <link rel="stylesheet" type="text/css" href="css/messages.css" />
    <script type="text/javascript" src="scripts/jquery-1.1.3.1.min.js"></script>
    <script type="text/javascript" src="scripts/jquery.easing.min.js"></script>
    <script type="text/javascript" src="scripts/jquery.lavalamp.min.js"></script>
    <script type="text/javascript" src="niftycube.js"></script>
    <script type="text/javascript">
     
    </script>
    <script type="text/javascript" src="scripts/messages.js"></script>
    <script type="text/javascript">
        window.onload=function()
        {
            Nifty("div#box","big");
        }
        $(function() {
            $("#1, #2, #3").lavaLamp({
                fx: "backout", 
                speed: 700,
                click: function(event, menuItem) {
                    return false;
                }
            });
        });
    </script>
    <script type="text/javascript">
    function UR_Start() 
    {
        UR_Nu = new Date;
        UR_Indhold = showFilled(UR_Nu.getHours()) + ":" + showFilled(UR_Nu.getMinutes()) + ":" + showFilled(UR_Nu.getSeconds());
        document.getElementById("ur").innerHTML = UR_Indhold;
        setTimeout("UR_Start()",1000);
    }
    function showFilled(Value) 
    {
        return (Value > 9) ? "" + Value : "0" + Value;
    }
     
    </script>
     
    </head>
     
    <body onload="UR_Start()">
    <div id="global">
        <div id="header">
            <div id="spacer_gauche_header"></div>
            <div id="content_header">
                <div id="content1">
                    <div id="logo">
                        <p id="ur"></p> 
                    </div>
                    <div id="logo_left">
                        <div id="logo_left_up">
                            <form action="#" onsubmit="return validate(this)" method="post">
                            email&nbsp;&nbsp;<input type="text" size="16" id="login" iname="login">
                            &nbsp;&nbsp;
                            Mdp&nbsp;&nbsp;<input type="password" size="16" id="mdp2" name="mdp2">&nbsp;
                            <input name="valid" type="submit" value="OK"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <a href="#">mdp oublié?</a>&nbsp;&nbsp;
                            <a href="#">Rejoignez-nous</a>
                            </form>
     
                        </div>
                        <div id="logo_left_down">
                            <ul class="lavaLampWithImage" id="3">
                                <li><a href="index.php" class="current">Accueil</a></li>
                                <li><a href="#">Annonces</a></li>
                                <li><a href="#">M&eacute;tier</a></li>
                                <li><a href="#">Reglementation</a></li>
                                <li><a href="#">Liens</a></li>
                                <li><a href="#">Forum</a></li>
                                <li><a href="contact.php">Contact</a></li>
                            </ul>
                        </div>
                    </div>
                </div>
                <div id="content_global">
     
                </div>
            </div>
            <div id="spacer_droite_header"></div>
        </div> 
    </div>
     
    <div id="box">
        <h1>Nifty Corners Cube&trade;</h1>
        <p>One call. Two parameters. Three sizes.</p>
    </div>
     
     
    </body>
    </html>
    CSS concerné :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    div#box{
        width: 792px;
        padding: 20px;
        margin:0 auto;
        background:#FFFFFF;
        color:#003333 ;
        border-color:#999999;
        border-style:solid ;
        border-width:1px ;
    }
    jacascript de niftycorners :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
     
    /* Nifty Corners Cube - rounded corners with CSS and Javascript
    Copyright 2006 Alessandro Fulciniti (a.fulciniti@html.it)
     
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
     
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
     
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    */
     
    var niftyOk=(document.getElementById && document.createElement && Array.prototype.push);
    var niftyCss=false;
     
    String.prototype.find=function(what){
    return(this.indexOf(what)>=0 ? true : false);
    }
     
    var oldonload=window.onload;
    if(typeof(NiftyLoad)!='function') NiftyLoad=function(){};
    if(typeof(oldonload)=='function')
        window.onload=function(){oldonload();AddCss();NiftyLoad()};
    else window.onload=function(){AddCss();NiftyLoad()};
     
    function AddCss(){
    niftyCss=true;
    var l=CreateEl("link");
    l.setAttribute("type","text/css");
    l.setAttribute("rel","stylesheet");
    l.setAttribute("href","niftyCorners.css");
    l.setAttribute("media","screen");
    document.getElementsByTagName("head")[0].appendChild(l);
    }
     
    function Nifty(selector,options){
    if(niftyOk==false) return;
    if(niftyCss==false) AddCss();
    var i,v=selector.split(","),h=0;
    if(options==null) options="";
    if(options.find("fixed-height"))
        h=getElementsBySelector(v[0])[0].offsetHeight;
    for(i=0;i<v.length;i++)
        Rounded(v[i],options);
    if(options.find("height")) SameHeight(selector,h);
    }
     
    function Rounded(selector,options){
    var i,top="",bottom="",v=new Array();
    if(options!=""){
        options=options.replace("left","tl bl");
        options=options.replace("right","tr br");
        options=options.replace("top","tr tl");
        options=options.replace("bottom","br bl");
        options=options.replace("transparent","alias");
        if(options.find("tl")){
            top="both";
            if(!options.find("tr")) top="left";
            }
        else if(options.find("tr")) top="right";
        if(options.find("bl")){
            bottom="both";
            if(!options.find("br")) bottom="left";
            }
        else if(options.find("br")) bottom="right";
        }
    if(top=="" && bottom=="" && !options.find("none")){top="both";bottom="both";}
    v=getElementsBySelector(selector);
    for(i=0;i<v.length;i++){
        FixIE(v[i]);
        if(top!="") AddTop(v[i],top,options);
        if(bottom!="") AddBottom(v[i],bottom,options);
        }
    }
     
    function AddTop(el,side,options){
    var d=CreateEl("b"),lim=4,border="",p,i,btype="r",bk,color;
    d.style.marginLeft="-"+getPadding(el,"Left")+"px";
    d.style.marginRight="-"+getPadding(el,"Right")+"px";
    if(options.find("alias") || (color=getBk(el))=="transparent"){
        color="transparent";bk="transparent"; border=getParentBk(el);btype="t";
        }
    else{
        bk=getParentBk(el); border=Mix(color,bk);
        }
    d.style.background=bk;
    d.className="niftycorners";
    p=getPadding(el,"Top");
    if(options.find("small")){
        d.style.marginBottom=(p-2)+"px";
        btype+="s"; lim=2;
        }
    else if(options.find("big")){
        d.style.marginBottom=(p-10)+"px";
        btype+="b"; lim=8;
        }
    else d.style.marginBottom=(p-5)+"px";
    for(i=1;i<=lim;i++)
        d.appendChild(CreateStrip(i,side,color,border,btype));
    el.style.paddingTop="0";
    el.insertBefore(d,el.firstChild);
    }
     
    function AddBottom(el,side,options){
    var d=CreateEl("b"),lim=4,border="",p,i,btype="r",bk,color;
    d.style.marginLeft="-"+getPadding(el,"Left")+"px";
    d.style.marginRight="-"+getPadding(el,"Right")+"px";
    if(options.find("alias") || (color=getBk(el))=="transparent"){
        color="transparent";bk="transparent"; border=getParentBk(el);btype="t";
        }
    else{
        bk=getParentBk(el); border=Mix(color,bk);
        }
    d.style.background=bk;
    d.className="niftycorners";
    p=getPadding(el,"Bottom");
    if(options.find("small")){
        d.style.marginTop=(p-2)+"px";
        btype+="s"; lim=2;
        }
    else if(options.find("big")){
        d.style.marginTop=(p-10)+"px";
        btype+="b"; lim=8;
        }
    else d.style.marginTop=(p-5)+"px";
    for(i=lim;i>0;i--)
        d.appendChild(CreateStrip(i,side,color,border,btype));
    el.style.paddingBottom=0;
    el.appendChild(d);
    }
     
    function CreateStrip(index,side,color,border,btype){
    var x=CreateEl("b");
    x.className=btype+index;
    x.style.backgroundColor=color;
    x.style.borderColor=border;
    if(side=="left"){
        x.style.borderRightWidth="0";
        x.style.marginRight="0";
        }
    else if(side=="right"){
        x.style.borderLeftWidth="0";
        x.style.marginLeft="0";
        }
    return(x);
    }
     
    function CreateEl(x){
    return(document.createElement(x));
    }
     
    function FixIE(el){
    if(el.currentStyle!=null && el.currentStyle.hasLayout!=null && el.currentStyle.hasLayout==false)
        el.style.display="inline-block";
    }
     
    function SameHeight(selector,maxh){
    var i,v=selector.split(","),t,j,els=[],gap;
    for(i=0;i<v.length;i++){
        t=getElementsBySelector(v[i]);
        els=els.concat(t);
        }
    for(i=0;i<els.length;i++){
        if(els[i].offsetHeight>maxh) maxh=els[i].offsetHeight;
        els[i].style.height="auto";
        }
    for(i=0;i<els.length;i++){
        gap=maxh-els[i].offsetHeight;
        if(gap>0){
            t=CreateEl("b");t.className="niftyfill";t.style.height=gap+"px";
            nc=els[i].lastChild;
            if(nc.className=="niftycorners")
                els[i].insertBefore(t,nc);
            else els[i].appendChild(t);
            }
        }
    }
     
    function getElementsBySelector(selector){
    var i,j,selid="",selclass="",tag=selector,tag2="",v2,k,f,a,s=[],objlist=[],c;
    if(selector.find("#")){ //id selector like "tag#id"
        if(selector.find(" ")){  //descendant selector like "tag#id tag"
            s=selector.split(" ");
            var fs=s[0].split("#");
            if(fs.length==1) return(objlist);
            f=document.getElementById(fs[1]);
            if(f){
                v=f.getElementsByTagName(s[1]);
                for(i=0;i<v.length;i++) objlist.push(v[i]);
                }
            return(objlist);
            }
        else{
            s=selector.split("#");
            tag=s[0];
            selid=s[1];
            if(selid!=""){
                f=document.getElementById(selid);
                if(f) objlist.push(f);
                return(objlist);
                }
            }
        }
    if(selector.find(".")){      //class selector like "tag.class"
        s=selector.split(".");
        tag=s[0];
        selclass=s[1];
        if(selclass.find(" ")){   //descendant selector like tag1.classname tag2
            s=selclass.split(" ");
            selclass=s[0];
            tag2=s[1];
            }
        }
    var v=document.getElementsByTagName(tag);  // tag selector like "tag"
    if(selclass==""){
        for(i=0;i<v.length;i++) objlist.push(v[i]);
        return(objlist);
        }
    for(i=0;i<v.length;i++){
        c=v[i].className.split(" ");
        for(j=0;j<c.length;j++){
            if(c[j]==selclass){
                if(tag2=="") objlist.push(v[i]);
                else{
                    v2=v[i].getElementsByTagName(tag2);
                    for(k=0;k<v2.length;k++) objlist.push(v2[k]);
                    }
                }
            }
        }
    return(objlist);
    }
     
    function getParentBk(x){
    var el=x.parentNode,c;
    while(el.tagName.toUpperCase()!="HTML" && (c=getBk(el))=="transparent")
        el=el.parentNode;
    if(c=="transparent") c="#FFFFFF";
    return(c);
    }
     
    function getBk(x){
    var c=getStyleProp(x,"backgroundColor");
    if(c==null || c=="transparent" || c.find("rgba(0, 0, 0, 0)"))
        return("transparent");
    if(c.find("rgb")) c=rgb2hex(c);
    return(c);
    }
     
    function getPadding(x,side){
    var p=getStyleProp(x,"padding"+side);
    if(p==null || !p.find("px")) return(0);
    return(parseInt(p));
    }
     
    function getStyleProp(x,prop){
    if(x.currentStyle)
        return(x.currentStyle[prop]);
    if(document.defaultView.getComputedStyle)
        return(document.defaultView.getComputedStyle(x,'')[prop]);
    return(null);
    }
     
    function rgb2hex(value){
    var hex="",v,h,i;
    var regexp=/([0-9]+)[, ]+([0-9]+)[, ]+([0-9]+)/;
    var h=regexp.exec(value);
    for(i=1;i<4;i++){
        v=parseInt(h[i]).toString(16);
        if(v.length==1) hex+="0"+v;
        else hex+=v;
        }
    return("#"+hex);
    }
     
    function Mix(c1,c2){
    var i,step1,step2,x,y,r=new Array(3);
    if(c1.length==4)step1=1;
    else step1=2;
    if(c2.length==4) step2=1;
    else step2=2;
    for(i=0;i<3;i++){
        x=parseInt(c1.substr(1+step1*i,step1),16);
        if(step1==1) x=16*x+x;
        y=parseInt(c2.substr(1+step2*i,step2),16);
        if(step2==1) y=16*y+y;
        r[i]=Math.floor((x*50+y*50)/100);
        r[i]=r[i].toString(16);
        if(r[i].length==1) r[i]="0"+r[i];
        }
    return("#"+r[0]+r[1]+r[2]);
    }
    Merci pour vos réponses

  2. #2
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 665
    Points
    66 665
    Billets dans le blog
    1
    Par défaut
    autant utiliser http://www.cssplay.co.uk/boxes/krazy.html alors ...

  3. #3
    Membre averti Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Points : 345
    Points
    345
    Par défaut
    C'est vrai...
    Je ne le connaissais pas.
    Seul impératif pour moi c'est de ne pas utiliser d'images d'angles et de ne pas utiliser la propriété css3 moz-border.
    Je teste tout ca et j'en fais part au forum !

  4. #4
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 640
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 640
    Points : 66 665
    Points
    66 665
    Billets dans le blog
    1
    Par défaut
    sinon je m'était amusé à faire ça :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
     
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 
    <title>Nouvelle page 1</title>
     
     
     
    </head>
     
     
    <script type='text/javascript'>
    var TabWidths= new Array()
    var tl
    var tr
    var bl
    var br
     
    function Widths(lines){
    TabWidths.length=0
     var DivCount=lines
     for (i=0;i<DivCount;i++){
    		var Y=i
    		var R=DivCount;
    		TabWidths[TabWidths.length]=(Math.floor(R*Math.sin(Math.acos(Y/R))))
    		}
     }		
     
     
    function Corners(){
     var fl= document.getElementsByTagName('tr')[0]
     var ll= document.getElementsByTagName('tr')[document.getElementsByTagName('tr').length-1]
     tl=fl.getElementsByTagName('td')[0]
     tl.dir="rtl"
     
     tr=fl.getElementsByTagName('td')[fl.getElementsByTagName('td').length-1] 
     tr.dir="ltr"
     
     bl=ll.getElementsByTagName('td')[0]
     bl.dir="rtl"
     
     br=ll.getElementsByTagName('td')[ll.getElementsByTagName('td').length-1] 
     br.dir="ltr"
     
     
     
     var tlW=Math.ceil(fl.offsetHeight/2)*2+2
     var trW=Math.ceil(ll.offsetHeight/2)*2+2
     
     
     tl.style.width=tlW
     tr.style.width=tlW
     
     MkDivs(tlW,tl)
     MkDivs(tlW,tr)
     MkDivs(tlW,bl)
     MkDivs(tlW,br)
     
     }
     
     
     function MkDivs(Count,Paste){
      Widths(Count)
      for(i=0; i<Count-1;i++){var NewDiv =document.createElement('div');
    								NewDiv.style.cssText="background-color:red;height:1px;line-height:0px; font-size:0px;border:solid 0px;overflow:hidden"
    								Paste.style.backgroundColor='white';
      								Paste.style.padding='0px';
      								Paste.style.margin='0px';
      								Paste.style.border='0px'
      								Paste.style.overflow='hidden'
      								Paste.style.lineHeight='1px'
      								Paste.style.fontSize='1px'
      								switch (Paste) { 
      												case tl: 	NewDiv.style.width=TabWidths[i];
      															break;
     
      												case tr:  NewDiv.style.width=TabWidths[i];
      															break;	
     
      												case bl:  NewDiv.style.width=TabWidths[Count-i-1];
    														  	break;
     
      												case br:  	NewDiv.style.width=TabWidths[Count-i-1];
    															break;
      												}
     								Paste.insertBefore(NewDiv,Paste.firstChild)
     								}
     								Paste.removeChild(Paste.lastChild)
     
     	}
     
     
     
     
     
    </script>
    <body onload="Corners();">
    <table style="background-color:red;border-collapse:collapse; " >
     
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td></td>
    </tr> 
    <tr>
     <td></td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
    </tr> 
     
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
    </tr> 
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
    </tr> 
     
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
    </tr> 
     
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
    </tr> 
     
    <tr>
     <td></td>
     <td>cxwvxcvwvxcv</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
    </tr> 
    <tr>
     <td></td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td>&nbsp;</td>
     <td></td>
    </tr> 
     
    </table>
     
    </body>

  5. #5
    Membre averti Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Points : 345
    Points
    345
    Par défaut
    Ton dernier code est sympa...mais je n'ai pas le temps de le transposer à la sauce "<div>" surtout que le premier lien que tu m'a laissé semble parfaitement faire l'affaire !
    Impécable et merci beaucoup la grenouille de l'espace !!!

  6. #6
    Membre averti Avatar de rems033
    Profil pro
    Inscrit en
    Mai 2007
    Messages
    513
    Détails du profil
    Informations personnelles :
    Localisation : France, Isère (Rhône Alpes)

    Informations forums :
    Inscription : Mai 2007
    Messages : 513
    Points : 345
    Points
    345
    Par défaut
    Résultat : ici
    Vive les bordures arrondies ! hihi

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Intégration de code c++
    Par Raoul le perdu dans le forum MFC
    Réponses: 2
    Dernier message: 24/02/2004, 08h54
  2. intégration de sons
    Par pal200 dans le forum OpenGL
    Réponses: 2
    Dernier message: 09/02/2004, 11h17
  3. [MFC][Excel] Intégration excel et MFC!
    Par fadoua dans le forum MFC
    Réponses: 2
    Dernier message: 22/12/2003, 10h51
  4. [NETBEANS] Intégration de Jboss dans NetBeans
    Par Kleb dans le forum NetBeans
    Réponses: 1
    Dernier message: 09/06/2003, 18h45

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo