Paste #131195 |
pasted on 13.01.2020 19:41
- Edit to this paste
- Raw
- The following pastes replied to this paste: # 141804
- Show paste tree
-
Compare with paste
#
Text paste
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title> tetex Document</title> <style> html, body{margin:0; padding:0;} .container{position:fixed; top:0px; left:0px; width:100vw; height:100vh;} .catalog{overflow: scroll;} .catalo_item{display: flex;float:left; min-width: 30vw; } .keybord{align-content:bottom; background: grey; min-height: 10vh; width: 100vw;} .key{padding: 10px; background: grey; } .keyword{float: left; align-content: center; } .key_lang{float: right; align-content: center;} </style> </head> <body> <div class="container"> <div class="catalog"></div> <div class="keyword"></div> <div class="key_lang"></div> </div> </div> </body> </html> |