現在サイドにあるリンクを上部に移動し、通常のナビゲーションバーのように整列させようとしています。このようNavbarのオブジェクトの配置と整列CSS/HTML
: 代わりに、それは現在、すべての側面に束ねているかのRough Illustration of Goal
。
現在のコード:任意の助けhttps://jsfiddle.net/58dn7rw7/
#mySidenav a {
position: fixed;
right: -90px;
transition: 0.3s;
padding: 15px;
width: 120px;
color: white;
border-radius: 100px 0 0 10px;
text-align: right;
text-decoration: none;
font-family: 'Quicksand', sans-serif;
font-size: 20px;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
#mySidenav a:hover {
right: 0;
-ms-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
感謝。あなたのコードに固執する場合
私はあなたが言っているものを得ることができないかもしれませんが、フィドルではあなたはトップを使って要素を配置しています。トップ値を広げたいものに変更できませんか? – Simon