小游戏移动盒子到中间
Posted tkopython
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小游戏移动盒子到中间相关的知识,希望对你有一定的参考价值。
A盒子300宽高,B盒子100,把B盒子放到A盒子中间
--------------------------------------
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>移动盒子</title> <style> .div1{ height: 300px; width: 300px; border: solid 2px; background-color: chartreuse; padding-left: 150px; padding-top: 150px; } .div2{ height: 100px; width: 100px; border: solid 2px; background-color: red; } </style> </head> <body style="position: center"> <div class="div1">fewfewf <div class="div2">ewfew</div> </div> </body> </html>
以上是关于小游戏移动盒子到中间的主要内容,如果未能解决你的问题,请参考以下文章