This time I will show you how to make the picture float in the center in JS. What are the precautions for making the picture float in the center in JS. The following is a practical case. , let’s take a look.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <style type="text/css"> .logo { width: 650px; height: 383px; position:fixed; background: url(http://www.jb51.net/images/logo.gif) no-repeat; margin:auto; left:0; right:0; top:0; bottom:0; } </style> <title>图片垂直居中不随滚动条滚动的JS代码</title> </head> <body style="height:3000px"> <p class="logo"> </p> </body> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
AngularJS implements guessing number game
Summary of a very easy-to-use extended Web form JS plug-in
The above is the detailed content of How to make the image float in the center in JS. For more information, please follow other related articles on the PHP Chinese website!