datatables - Twitter Bootstrap Responsive - Show Table Column only on Desktop -
i'm using datatables.net + twitter bootstrap , responsive layout, i'm trying hide columns of table using class "visible-desktop" thats shows columns in big sizes seems not work, hides if resize windows desktop width columns hidden start showing stacked, seems css display class problem, because inherits type of display parent:
.visible-desktop { display: inherit!important; }
if manipulate
.visible-desktop { display: table-cell!important; }
works well... there workaround this? or have write own class table column hiding?
available classes .visible
, .hidden
.
use single or combination of available classes toggling content across viewport breakpoints.
from bootstrap section here http://getbootstrap.com/css/#responsive-utilities-classes
Comments
Post a Comment