Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML / CSS - Frozen Table Column on the right side

I've found a solution for fixed/frozen left-column here: http://jsfiddle.net/emn13/YMvk9/

    body { font:16px Calibri;}
    table { border-collapse:separate; border-top: 3px solid grey; }
    td {
        margin:0;
        border:3px solid grey; 
        border-top-width:0px; 
        white-space:nowrap;
    }
    div { 
        width: 600px; 
        overflow-x:scroll;  
        margin-left:5em; 
        overflow-y:visible;
        padding-bottom:1px;
    }
    .headcol {
        position:absolute; 
        width:5em; 
        left:0;
        top:auto;
        border-right: 0px none black; 
        border-top-width:3px; /*only relevant for first row*/
        margin-top:-3px; /*compensate for top border*/
    }
    .headcol:before {content: 'Row ';}
    .long { background:yellow; letter-spacing:1em; }​

But is it also possible to get a right fixed/frozen column without Javascript or another overlaying table?

like image 836
Matty Avatar asked Nov 14 '12 12:11

Matty


1 Answers

Change the css like below

 div { 
            width: auto; 
            overflow-x:scroll;  
            margin-right:5em; 
            overflow-y:visible;
            padding-bottom:1px; 
        }
        .headcol {
            position:absolute; 
            width:5em; 
            right:0;
            top:auto;
            border-right: 0px none black; 
            border-top-width:3px; /*only relevant for first row*/
            margin-top:-3px; /*compensate for top border*/
        }
        .headcol:after{content: 'Row ';}

DEMO

like image 178
Sowmya Avatar answered Oct 06 '22 23:10

Sowmya