I am looking for a solution to place cells between each row of a table, but not between columns. Is it possible?
border-spacinggood, but IE6 / 7 does not know about it . If you want to cover them as well, then rather do the following:
border-spacing
table { border-collapse: collapse; } td { border: 10px solid white; /* Or any color which matches table bgcolor */ border-width: 10px 0; }
You can split the rows in the table using the property border-spacing:
table { border-collapse:separate; border-spacing: 0 10px; }
10px. , , ; , , .
Source: https://habr.com/ru/post/1763165/More articles:Mocking LINQ To SQL data provider, NotSupportedException in live code - unit-testingView iPhone UISearchBar not updating immediately? - objective-cRuby on Rails voting update - ruby | fooobar.comChoosing a Perl GUI Module to maximize cross-platform use - user-interfaceUse Nokogiri to get all nodes in an element that contains a specific attribute name - ruby | fooobar.comThe difference between <%: and <% = - syntaxTo split a text file into pieces based on the string, how is the operation of splitting the lines? - pythonBlackberry 9800 Crashing simulator on browser launch - jvm"The left side of the job should be variable" with charAt - javaGenerating duplicate responses in a MySQL SELECT query - mysqlAll Articles