Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
CSS: How do you keep table borders from going transparent when changing opacity?
I just want to change the transparency of the background, not the borders, but it seems as though it does it automatically when I fiddle with it.
.c_forum {
color:#472a1c;
opacity:0.8;
font-size:80%;
width:60%;
}
3 Answers
- Anonymous9 years agoFavorite Answer
Asking a coding question with no code to view will not get you a correct answer. Either post a link to the page online or use a site like PasteBin.com.
Tableless Web Design: http://en.wikipedia.org/wiki/Tableless_web_design
Why tables for layout is stupid: http://www.hotdesign.com/seybold/
How to convert manually your HTML tables to CSS: http://www.table2css.com/articles/how-convert-manu...
Basic Tables [Bad Examples!]: http://www.yourhtmlsource.com/tables/basictables.h...
Images, Tables, and Mysterious Gaps: https://developer.mozilla.org/en/Images,_Tables,_a...
Ron
- Anas ImtiazLv 69 years ago
Instead of changing opacity of the entire table, only change opacity of the cells.
Try this for an illustration: http://anasimtiaz.x10.mx/test/chngtblopacty
You can view the code by clicking at the bottom of the page.
Source(s): Web Developer/Designer. - GuyOnEarthLv 79 years ago
What do you expect? You're applying your opacity to the whole table, not just to the background.
...