Bootstrap 3 table is described as:
<style>
/* Overriding Bootstrap style to ensure description text wraps into multiple rows on mobile */
.details-propertyvalue {
white-space:normal !important;
}
</style>
<table class="table table-hover table-condensed table-striped">
<tbody><tr>
<td>
Product information
</td>
<td class="details-propertyvalue">
sdofsdk sdklöfsdklö sdfklösdflök sdfkösdlökdsö sdfösdkf sdfkösdkf sdöfksdfö sdfksdölf sdfsdlfökö sdfösdlkf sdöfksdöflk sdfösdköfk söfsdköfskdf sdfksdö ... more similar tr elements
On a desktop screen, the table displays properly in two columns. However, on a mobile device, it also appears in two columns but the description column is very narrow.
Is there a way to make it appear in a single column on mobile: with the first row for the title and the second row for the description so that the column takes up the entire width of the screen in portrait orientation?
This table uses Bootstrap 3 and jquery-ui in an ASP.NET MVC4 shopping cart.