mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 10:18:41 +02:00 
			
		
		
		
	Differential Revision: https://phabricator.services.mozilla.com/D28729 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			384 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE HTML>
 | 
						|
<html>
 | 
						|
<meta name="viewport" content="width=device-width">
 | 
						|
<style>
 | 
						|
html {
 | 
						|
    scrollbar-width: none;
 | 
						|
}
 | 
						|
#scrolled {
 | 
						|
    height: 2000px;
 | 
						|
    width: 100%;
 | 
						|
}
 | 
						|
#fixed {
 | 
						|
    width: 100%;
 | 
						|
    height: 200px;
 | 
						|
    position: fixed;
 | 
						|
    bottom: 0;
 | 
						|
    background: red;
 | 
						|
    margin-bottom: 50px;
 | 
						|
}
 | 
						|
</style>
 | 
						|
<body>
 | 
						|
  <div id="scrolled"></div>
 | 
						|
  <div id="fixed"></div>
 | 
						|
</body>
 | 
						|
</html>
 |