Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>Example</title> <style> .outer-container { height: 200px; font: 100 24px/200px sans-serif; text-align: center; color: white; display: flex; flex-direction: row-reverse; } .outer-container div { width: 33%; } .red { background: orangered; } .green { background: yellowgreen; } .blue { background: steelblue; } </style> <div class="outer-container"> <div class="red">1</div> <div class="green">2</div> <div class="blue">3</div> </div>
Preview