diff options
Diffstat (limited to 'css/table.css')
-rwxr-xr-x | css/table.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/css/table.css b/css/table.css new file mode 100755 index 0000000..01fbe25 --- /dev/null +++ b/css/table.css @@ -0,0 +1,22 @@ +.CSS_Table_Example { + margin:0px;padding:0px; + width:100%; + box-shadow: 10px 10px 5px #888888; + border:1px solid #000000; + -moz-border-radius-bottomleft:9px; + -webkit-border-bottom-left-radius:9px; + border-bottom-left-radius:9px; + -moz-border-radius-bottomright:9px; + -webkit-border-bottom-right-radius:9px; + border-bottom-right-radius:9px; + -moz-border-radius-topright:9px; + -webkit-border-top-right-radius:9px; + border-top-right-radius:9px; + -moz-border-radius-topleft:9px; + -webkit-border-top-left-radius:9px; + border-top-left-radius:9px; +}.CSS_Table_Example table{ + width:100%; + height:100%; + margin:0px;padding:0px; +}
\ No newline at end of file |