因此,我遇到了一个无法解决的有趣问题。
我正在尝试制作一个垂直栏菜单,所有窗口高度均为100%。他们有固定的位置。我希望文字是垂直的。请检查我做的草图:
还有这个JSFiddle。
HTML结构如下所示:
<header>
header
</header>
<nav>
<ul>
<li><a href="#">bar 1</a></li>
<li><a href="#">bar 2</a></li>
<li><a href="#">bar 3</a></li>
<li><a href="#">bar 4</a></li>
</ul>
</nav>
像这样的CSS:
header {
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 250px;
padding: 20px;
background: rgb(42,42,42);
background: rgba(10,10,10,0.95);
}
nav {
position: fixed;
left: 300px;
width: 100%;
margin-left: -50%;
top: 50%;
height: 75px;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
transform-origin: 50% 50%;
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
background: blue;
border: 2px solid red;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
width: 100%;
}
nav ul li {
width: 100%;
}
nav ul li a {
display: block;
width: 100%;
height: 32px;
background: #f3b200;
}
nav ul li:nth-child(1) a { background: #c61c05; }
nav ul li:nth-child(2) a { background: #dc572e; }
nav ul li:nth-child(3) a { background: #d27b26; }
nav ul li:nth-child(4) a { background: #f3b200; }
现在的问题是,我无法弄清楚如何按照自己的意愿放置
nav
。我给出的每个尺寸(宽度,高度,顶部位置,左侧位置)都是基于0度旋转给出的。之后进行旋转。因此,高度不是视口高度的100%,而是视口宽度的100%。
我还尝试过将
ul
内的nav
以及其中的li
旋转,但无法找出正确的方式放置此nav
栏。我正在寻找一个纯CSS解决方案。
最佳答案
如果我正确地认为您希望所有内容都是页面高度的100%,请使用页面流程而不是更改position
。将导航浮动到标题旁边,依此类推。然后,您可以在链接内旋转某些<span>
而不是整个旋转。这是一个改动。我把剩下的交给你:
的HTML
<header>header</header>
<ul>
<li><a href="#"><span>bar 1</span></a></li>
<li><a href="#"><span>bar 2</span></a></li>
<li><a href="#"><span>bar 3</span></a></li>
<li><a href="#"><span>bar 4</span></a></li>
</ul>
<div class="other">Loads of other content</div>
的CSS
html, body {
margin:0;
padding:0;
height:100%;
}
header {
float:left;
height:100%;
width: 250px;
background: rgb(42, 42, 42);
background: rgba(10, 10, 10, 0.95);
}
ul{
float:left;
display:block;
margin:0;
padding:0;
height:100%;
}
ul li{
display:block;
margin:0;
padding:0;
float:left;
height:100%;
}
ul li a{
display:block;
height:100%;
}
ul li a span{
position:relative;
top:20px;
color:#FFF;
display:block;
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
font-size:26px;
width:60px;
direction: rtl;
white-space: nowrap;
}
关于css - 固定 strip 竖排文字,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20889845/