1
chenluo0429 236 天前 via Android 1
实际上是个 css 问题。A 作为父元素,position 为 relative ,x 作为 A 的子元素,样式
position: absolute; right: 0; top: 50%; transform: translate(100%, -50%); 第二个问题同理 |
2
fd9xr 235 天前 via iPhone
css 就好啦 Mantine 就不可能能实现这种东西呀
|
3
duan602728596 235 天前 1
<!DOCTYPE html>
<html> <head> <meta charset="UTF-8"> <style> .container { width: 300px; padding: 16px 0; border: 1px solid #000; text-align: center; } .btn { width: 50px; height: 30px; } .btn-item { position: relative; display: inline-block; margin: 0 4px; text-align: left; } .small-btn { position: absolute; bottom: 0; right: -75px; } </style> </head> <body> <div class="container"> <div class="btn-item"> <button class="btn">Btn1</button> </div> <div class="btn-item"> <button class="btn">Btn2</button> <button class="small-btn">Small btn</button> </div> </div> </body> </html> |