Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .container { background: #b5bab6; height: 150px; flex-direction: column; padding: 10px; display: flex; align-items: flex-start; } a { padding: 10px 40px; background: #55e6e0; } </style> </head> <body> <div class="container"> <a href="#">Some text</a> <a href="#">Some text</a> <a href="#">Some text</a> <a href="#">Some text</a> <a href="#">Some text</a> <a href="#">Some text</a> <a href="#">Some text</a> </div> </body> </html>