gpt4 book ai didi

html - CSS 右侧菜单

转载 作者:太空宇宙 更新时间:2023-11-04 10:48:56 25 4
gpt4 key购买 nike

我很难让右侧菜单与侧面正确对齐。

当我调整东西的宽度时,它会从侧面偏移。

CSS:

.tab {
position: fixed;
right: 0px;
top: 0px;
bottom: 0px;
margin: auto;
padding: 0;
height: 20px;
width: 80px;
display: block;
background-color: #111;
color: #fed;
-webkit-transform: rotate(-90.0deg);
transform: rotate(-90.0deg);
text-align: center;
}

HTML:

<div class="tab">MENU</div>

http://codepen.io/flemmingdjensen/pen/PZBbaG

最佳答案

您需要设置变换原点。

-webkit-transform: rotate(-90.0deg);
-webkit-transform-origin: bottom right;
transform: rotate(-90.0deg);
transform-origin: bottom right;

http://codepen.io/anon/pen/WrKRbM

关于html - CSS 右侧菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35141796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com