any86 / Notes

:rocket: 笔记
https://github.com/any86/Notes/issues
28 stars 9 forks source link

各个浏览器下 全屏状态下背景色设置 #74

Open any86 opened 3 years ago

any86 commented 3 years ago
:-webkit-full-screen {  
  background-color: @content-bg !important;  
}  
:-moz-full-screen {  
  background-color: @content-bg !important;  
}  

:-ms-fullscreen {  
  background-color: @content-bg !important;  
}  
:fullscreen {  
  background-color: @content-bg !important;  
}