ItsWesYo Posted June 13, 2008 Share Posted June 13, 2008 View the attached image to refer to this post. ----------- How would I go about to hide all the INSIDE borders of that table? For #1, I would like the right border hidden or at least colored white, etc. [attachment deleted by admin] Quote Link to comment https://forums.phpfreaks.com/topic/110111-solved-table-css-help/ Share on other sites More sharing options...
ItsWesYo Posted June 13, 2008 Author Share Posted June 13, 2008 ..... Quote Link to comment https://forums.phpfreaks.com/topic/110111-solved-table-css-help/#findComment-565229 Share on other sites More sharing options...
xtopolis Posted June 14, 2008 Share Posted June 14, 2008 Depends on what your code is... If that picture represents a bunch of <td></td>s next to each other, you could probably just apply a border to the table only. If those are all tables next to each[not the best idea], you could have table { border: 1px solid black; } table.nRB { border-right: 0px; } table.nLB { border-left: 0px; } just class stack the inside tables , and add the appropriate class to the first and last. <table name="table1" class="nRB"><table name="table2" class="nLB nRB"> .. .etc same idea for if they are TDs. Quote Link to comment https://forums.phpfreaks.com/topic/110111-solved-table-css-help/#findComment-565336 Share on other sites More sharing options...
ItsWesYo Posted June 14, 2008 Author Share Posted June 14, 2008 Thanks, but I finally figured it out. Quote Link to comment https://forums.phpfreaks.com/topic/110111-solved-table-css-help/#findComment-565354 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.