-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #427 from ncihtan/htan-docs
- Loading branch information
Showing
54 changed files
with
15,380 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* Ensure tables fit within the viewport without scrolling */ | ||
table { | ||
width: 100%; | ||
table-layout: fixed; /* Forces the table to take up the full width */ | ||
overflow-x: auto; /* Enable horizontal scrolling only when necessary */ | ||
border-collapse: collapse; /* Ensures no spaces between table cells */ | ||
margin-bottom: 20px; /* Optional: Adds space below the table */ | ||
} | ||
|
||
th, td { | ||
word-break: break-word; /* Allows long words to break and wrap */ | ||
padding: 8px; /* Adjust padding as needed */ | ||
text-align: left; /* Adjust text alignment as needed */ | ||
border: 1px solid #ddd; /* Optional: Adds borders to cells */ | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.