This file contains hidden or 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
| <style> | |
| .container { | |
| height: 200px; /* Set a fixed height for the scrollable area */ | |
| overflow: auto; | |
| display: flex; | |
| flex-direction: column-reverse; /* Reverses the order, so bottom is treated as top */ | |
| } | |
| .content-wrapper { | |
| display: flex; |