Print.css to print a table gives row on other row

I have a table on my website with around 80 rows. My problem is that somes rows are on other row. Here's a picture of it :

http://i46.tinypic.com/23vydky.png

Can someone tell me how row 39 can be in row 40? Here's my css :


    body {
        margin      : 0;
        padding     : 0;
        font        : verdana, arial, "Trebuchet MS", tahoma, sans-serif;
        color       : #000;
        text-align  : left;
    }

    * html body {
        text-align  : center;
        font        : verdana, arial, "Trebuchet MS", tahoma, sans-serif;
        line-height : 1.7em;
        color       : #000;
    }

    * html #container {
        width       : 720px;
        text-align  : left;
        padding     : 0;
    }

    element.style {
    color: #000;
    }

    #recherche
    {
        display:none;
    }

    table.tableau
    {
        width: 450px;
        margin: 0 auto;
        border      : 1px solid #7DCE27;
        border-collapse:collapse;
        font-family: arial, Times, serif;
        font-size:14px;
    }

    table.tableau td
    {
            border      : 1px solid #7DCE27;
    }

    #navlist {

        display:none;
    }

    #banner {
        display     : none;
    }
                /*MAIN CONTENT*/
    #content {
        margin-left  : 15px;
        margin-right : 70px; 
        text-align   : left;
    }
                /*MAIN CONTENT* IE 6 et IE 7*/ 
    *html #content {
        display     : none;
    }
                /*SIDEBAR*/
    #sidebar {
        display     : none;
    }
                /*SIDEBAR IE6 IE7*/
    *html #sidebar {
        display     : none;
    }
                /*FOOTER*/
    #footer {
        display     : none;
    }

链接地址: http://www.djcxy.com/p/87568.html

上一篇: Relay / GraphQL'resolve'是如何工作的?

下一篇: Print.css打印表格给其他行上的行