@Cludo wrote:
Hello
I want to create a table horizontally scrollable I create to table one whith fixed position one over in
all right excepted when I scroll my scrolling part go over my fixed part how avoid this?
I try CSS propertie overflow: hiden; but it doesn't workThanks
my CSS code is
.left {
position:fixed;
left:0;
width:150px;background:#FFF7DC;
}.right {
width:2500px;
margin-left:150px;}
.tdtaille{
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
-moz-box-flex: 0;
-moz-flex: 0 0 25%;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
overflow:hidden;
text-align: center;
}My html code:
Posts: 1
Participants: 1