私は、垂直に回転したサイドバーメニューについて最悪のCSSを作成しました。この適切なCSSを作るための助けてください? リストコンテナDIVも回転しようとしました。しかし、再び、私はここに位置縦書きテキストメニューに適切なCSSを使用するにはどうすればよいですか?
をコントロールすることはできませんメニューが
.slidebar_container {
position: relative;
left: 0px;
top: 0px;
display: block;
width: 58px;
height: 400px;
margin-bottom: 2px;
padding-top: 0px;
float: none;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
border-radius: 50px;
background-color: #393e45;
}
.sidebar_list_item {
display: block;
margin-right: 10px;
margin-left: 10px;
float: right;
clear: none;
font-family: Poppins, sans-serif;
color: #fff;
line-height: 58px;
font-size:12px;
font-weight: 700;
}
.sidebar_menu_list {
position: absolute;
right: 0px;
bottom: 0px;
display: block;
width: 440px;
height: 50px;
margin: -58px -185px 130px 63px;
padding-left: 0px;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
-webkit-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
transform: rotate(-90deg);
}
.services_section {
display: block;
height: 100%;
background-color: rgb(0, 152, 255);
}
<div class="services_section">
<div class="slidebar_container">
<ul class="sidebar_menu_list w-clearfix w-list-unstyled">
<li class="sidebar_list_item">Quality</li>
<li class="sidebar_list_item">Pricing</li>
<li class="sidebar_list_item">Turnaround</li>
<li class="sidebar_list_item">Translation</li>
</ul>
</div>
</div>
</div>
を助け
・ホープ(元hereを試してみてください)。 –
@delizade私は答えを投稿しました。それはうまく動作するようです。見てみましょう。その後、http://www.stackoverflow/help/accepted-answerにアクセスして、あなたの担当者がどのように機能するのかを確認してください! (一見、あなたは3年以上にわたりそのサイトにいましたか?..hh .. ..ホバー+クリック..それほど難しくありません) –