Skip to content

Instantly share code, notes, and snippets.

@terkel
Created September 26, 2011 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save terkel/1241497 to your computer and use it in GitHub Desktop.
Save terkel/1241497 to your computer and use it in GitHub Desktop.
table と th/td でボーダー色を変える
div {
border: 1px solid red;
*border-style: none;
}
div table {
border-style: hidden;
*border: 1px solid red;
}
div table th,
div table td {
border: 1px solid blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment