窗口左侧的垂直按钮

时间:2017-07-25 09:09:26

标签: html css css3

我是CSS的初学者,我需要你帮助创建按钮(我相信这对你来说非常简单)。

示例元素应如下所示:

button pic

你怎么想,这样做容易吗?

提前致谢

2 个答案:

答案 0 :(得分:1)

button {

    /* Rotate*/
    -ms-transform: rotate(270deg); /* IE 9 */
    -webkit-transform: rotate(270deg); /* Chrome, Safari, Opera */
    transform: rotate(270deg);
}

答案 1 :(得分:0)

<!DOCTPE html>
<html>
<head>
     <title> Button style </title>
     <style>
         button{
            position: absolute;
            bottom: 10px;
            right: 10px;
           transform: rotate(270deg);
           transform-origin: bottom right;
         }
     </style>
</head>
<body>


<button> Sample Button </button>

</body>
</html>