我试图找出如何制作位于右上角并旋转90度的购物车标签。旋转自然地混合了位置,但可能有一个包装到不同包装等的解决方法....
如果不需要定义宽度,则加分。我不关心旧浏览器
答案 0 :(得分:27)
如何使用transform-origin
?请参阅DEMO。
相关CSS:
#box {
position: relative;
}
.bg {
right: 40px; /* same as height */
height: 40px;
transform: rotate(-90deg);
transform-origin: 100% 0;
position: absolute;
line-height: 40px; /* same as height, for vertical centering */
}
答案 1 :(得分:6)
Ana's answer非常出色,并指出了我正确的方向,但我意识到你可以达到同样的效果,而无需明确设置你想要移动的元素的高度,线高和位置 - 相反,只需设置translate(0, -100%)
:
body {
margin: 0;
}
#box {
position: relative;
}
.bg {
right: 0;
padding: 1em;
transform: rotate(-90deg) translate(0, -100%);
transform-origin: 100% 0;
position: absolute;
background: #FF1493;
}

<div id="box">
<div class="bg">
<div class="txt">He's not the Messiah. He's a very naughty boy.</div>
</div>
</div>
&#13;
...以及jsFiddle以获得良好的衡量标准。
答案 2 :(得分:1)
要使用CSS以90°旋转文本,请考虑使用writing-mode
。
在父div上设置position: relative;
,然后在旋转的元素上使用类似的东西:
#rot {
position: absolute; /* only handy here because its parent is set to `position: relative;` */
left: 0;
top: 0px;
/* writing-mode: sideways-lr; /* Webkit browsers don't support `sideways-lr` yet */
writing-mode: vertical-rl; /* `vertical-rl` and a rotation will achieve the same effect */
transform: scaleX(-1) scaleY(-1);
height: 100%;
background: rgba(0, 0, 0, 0.1);
text-align: center;
line-height: 2.85;
color: white;
font-weight: bold;
}
你最终会在父div的一侧叠加一个div,文本的角度为90°。
这样您就不必考虑旋转原点了。
答案 3 :(得分:0)
如果您需要定位包装div并旋转子div,以使其始终垂直和水平居中,请尝试这样的操作!
.togglewrap{
position:relative;
float:left;left:20%;top:0;
width:30px;
height:120px;
background-color: #ffde21;
}
.sbartoggle {
background:#f5f5f5;
position:absolute;
left:0;
top:0;
right:0;
bottom:0;
margin:auto;
width:100%;
height:30px;/*equal to parent width*/
line-height:30px;/*center text*/
transform: rotate(-90deg);
background-size:10px 10px;
}