テーブルの特定のセルのみ枠線を消す方法
■線を上か下の一方を消す方法
枠線をborderで設定するが、上だけ消したいと思ったり、下から消したいと思った時にどのような手段で消せば良いかというと
border-top-style:hiddenで上が消え、border-bottom-style:hiddenで下が消える。
code:html
<div class="hello">線の一部を消します</div>
code:CSS
.hello{
border:solid 2px #abe;
width:200px;
margin:0 auto;
border-top-style:hidden;
}
■線を左か右だけ消す方法
枠線を左か右、消したい時にはborder-left,border-rightを設定する。
http://www.htmq.com/style/border-left.shtml
(番外編)githubでいろんなパターンを動かして見た
https://gist.github.com/rikotsuka/e893001831e79d5abde55344d72f6794