Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> * { margin: 0; padding: 0; } main{ position:relative; } div{ background-color: yellow; height: 200px; width: 100%; position: fixed; bottom: 0; z-index: 1; border-top: 2px solid gold; } </style> </head> <body> <main> <h2>This is the header </h2> <div>Текст, выровненный по нижней границе</div> </main> </body> </html>