|
|
Line 3: |
Line 3: |
| /* float: right;*/ | | /* float: right;*/ |
| /*}*/ | | /*}*/ |
|
| |
| /* Ensure the table wrapper is wide enough and allows floating */
| |
| .citizen-table-wrapper {
| |
| width: 100%; /* Ensure it occupies full width */
| |
| overflow: visible; /* Prevent overflow from hiding the table */
| |
| clear: both; /* This ensures the table clears correctly if needed */
| |
| }
| |
|
| |
| /* Ensure the table itself floats to the right */
| |
| .citizen-table-wrapper table {
| |
| float: right; /* Float the table to the right */
| |
| margin-left: 1em; /* Add margin to separate from other content */
| |
| margin-bottom: 1em; /* Add some space below */
| |
| }
| |
|
| |
| /* Make sure the section's content flows correctly around the floated table */
| |
| section {
| |
| overflow: hidden; /* Forces the section to clear its children */
| |
| width: 100%; /* Ensure full width for section */
| |
| }
| |