aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorSıtkı Bağdat <sbagdat@gmail.com>2013-06-17 03:22:31 +0300
committerSıtkı Bağdat <sbagdat@gmail.com>2013-06-17 19:59:02 +0300
commitf0e4254bfa1443c3d51af117b925a02b88076f58 (patch)
treec9d7cfc7310ae13624bdb4d377b959ac1c5ca16f /guides/source/getting_started.md
parentce13dc28e47d739545da5732a2b23903c9b7ed84 (diff)
downloadrails-f0e4254bfa1443c3d51af117b925a02b88076f58.tar.gz
rails-f0e4254bfa1443c3d51af117b925a02b88076f58.tar.bz2
rails-f0e4254bfa1443c3d51af117b925a02b88076f58.zip
Use Colspan in th Tags
Is it more suitable that using ```<th colspan="3">``` instead of three empty ```<th>```? It is simple, but what i am missing about it? Change repetitive th tags to use colspan attribute Update CHANGELOG.md Update CHANGELOG.md
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md7
1 files changed, 2 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 2fb0cd7c72..0d44f0e776 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -932,8 +932,7 @@ appear next to the "Show" link:
<tr>
<th>Title</th>
<th>Text</th>
- <th></th>
- <th></th>
+ <th colspan="2"></th>
</tr>
<% @posts.each do |post| %>
@@ -1073,9 +1072,7 @@ together.
<tr>
<th>Title</th>
<th>Text</th>
- <th></th>
- <th></th>
- <th></th>
+ <th colspan="3"></th>
</tr>
<% @posts.each do |post| %>