Skip to content

Commit

Permalink
remove border attribute for table tag
Browse files Browse the repository at this point in the history
  • Loading branch information
misaflo committed Feb 28, 2014
1 parent de15458 commit 68cb7d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions snippets/html.snippets
Original file line number Diff line number Diff line change
Expand Up @@ -749,15 +749,15 @@ snippet summary
snippet sup
<sup>${0}</sup>
snippet table
<table border="${1:0}">
<table>
${0}
</table>
snippet table.
<table class="${1}" border="${2:0}">
<table class="${1}">
${0}
</table>
snippet table#
<table id="${1}" border="${2:0}">
<table id="${1}">
${0}
</table>
snippet tbody
Expand Down

0 comments on commit 68cb7d8

Please sign in to comment.