position-fixed-on-half-height-content.html (285B)
1 <!DOCTYPE html> 2 <meta name="viewport" content="width=device-width"> 3 <style> 4 html, body { 5 margin: 0; 6 width: 100%; 7 height: 50%; 8 } 9 #fixed { 10 width: 100px; 11 height: 100px; 12 background-color: green; 13 position: fixed; 14 bottom: 0px; 15 right: 0px; 16 } 17 </style> 18 <div id="fixed"></div>