Render Flow - Dropdown directions (up, left, right)
Read <div class='dropdown'>
→Create dropdown container node
Read <button class='dropdown-toggle'>
→Create button node
Read <ul class='dropdown-menu'>
→Create menu node
Apply direction class (dropup, dropstart, dropend)
→Position menu accordingly
Render button and menu visually
The browser reads the dropdown HTML structure, creates nodes for the container, button, and menu. Then Bootstrap's direction classes adjust the menu's position relative to the button before rendering.