Click here to Skip to main content
15,885,941 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to change the grouping text font size and color using CSS but the problem is I have a table inside panel and the border color is also changed so can someone help me to write CSS for the panel.
Posted
Updated 9-Jan-15 20:30pm
v2

No, that should not happen. To change the table border color you must have the following code inside your CSS stylesheet.

CSS
table {
   border: 1px solid #hexcol;
}


So, either inside your code this kind of code is present to update the table's default border value. Otherwise, you're un aware of any CSS code that is causing this effect. However, if it happens any way. You can write another line of code for this table, to keep its initial value (black) or any other value that you want it to take independant of its parent's font or color properties. Use the above CSS code, and add the color property to the table's border. You can pass the value initial to the border property, to cause the border to have the initial value of black.
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900