I am trying to simulate an html table element using pure CSS (for latest Chrome). Here is the code: http://jsfiddle.net/XVecz/4/
.table .table-cell[colSpan] { width: 100%; }
Everything works fine except for the colSpan attribute. It does not populate the td cell. Can you recommend a workaround?
Unfortunately, you need to break the layout. If you use cell size, that might be good. To break the layout, you need to set table tables as a table. http://jsfiddle.net/XVecz/5/
.table .table-row { display: table; width:100%; }
Source: https://habr.com/ru/post/1485428/More articles:Find Relative Java Application Path - javaWSO2 CEP - Out of Memory - wso2How to get the name of the running HTML application Windows 8 (and not WWHOST) - c #Get process id of running metro application - c ++How to create user level in log4net? - log4netWhy does Automapper use so much memory? - memory-leaksPHP spin system. The lower the number, the more rewards you get - phpAdd scope autoincrement to existing column in file migration rails - ruby-on-railsadding a set of queries to a list / tuple without evaluating it - djangojQuery: Get the last 'td' containing text without using each - javascriptAll Articles