答案 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>