Table test FIREFOX: Borders part 2
Put code into the HEAD section of page. In CSB5, use Page Properties
=======================================================================================
The table below is ALL HTML code that has been inserted into CSB with Insert> HTML
Code is added to the HEAD section and INSERT HTML to create this table.
And it show the same in Internet Explorer and Firefox. BUT it is not built by CSB.
| Firstname |
Lastname |
Savings |
| Peter |
Griffin |
$100 |
| Lois |
Griffin |
$150 |
| Joe |
Swanson |
$300 |
| Cleveland |
Brown |
$250 |
=========================================================================================
The following sample tries to work around CSB Table formatting by putting a table frame around a CSB table.
Trying for thick black border around a table set to hidden borders. NOPE.
Screen shot: In Internet Explorer, you get an inset table.
Screen shot: In Firefox, you get only a LINE above the CSB table.
=========================================================================================
The following samples try to overwrite the CSB TABLE formatting by inserting style codes into HEAD section.
Does not work well.
SAMPLE 1
CODE USED in Head Section:
<style>
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
</style>
|
Screen shots: Looks like this in CSB:
|
Looks like this in internet Explorer:
|
Looks like this in FireFox:
|
SAMPLE 2
CODE USED in Head section is same as secoabove. But CSB settings are different.
<style>
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
</style>
|
Screen shots: Looks like this in CSB:
|
Looks like this in internet Explorer:
|
Looks like this in FireFox:
|
SAMPLE 3
CODE USED in Head section is below.
Also changed background of table in CSB to white.
<style>
table, td, th
{
border:3px solid green;
}
th
{
background-color:green;
color:white;
}
</style>
|
Screen shots: Looks like this in CSB:
|
Looks like this in internet Explorer:
|
Looks like this in FireFox:
|
|