Answers for "responsive tabel css"

CSS
0

tabla responsive css

@media screen and (max-width: 320px) {
     table {
       display: block;
       overflow-x: auto;     }
}
Posted by: Guest on September-03-2020
0

responsive table css

/* Responsive*/ 


/* 992px - 1200px */ 
@media screen and (max-width: 1200px) {
	
}


/* 768px - 992px */
@media screen and (max-width: 992px) {
	
} 


/* 576px - 768px */ 
@media screen and (max-width: 768px) {
	
}


/* 0 - 576px */ 
@media screen and (max-width: 576px) {
	
}
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language