gpt4 book ai didi

css - 如何在 HTML 中制作垂直旋转的链接?

转载 作者:行者123 更新时间:2023-11-28 08:38:26 25 4
gpt4 key购买 nike

我正在努力做到这一点:

enter image description here

使用此代码:

<div id='left_column_date_search'>
<a href='#' class='a1'><span>Dnes</span></a>
<a href='#' class='a2 selected'><span>Zítra</span></a>
<a href='#' class='a3'><span>Pátek</span></a>
<a href='# 'class='a4'><span>Sobota</span></a>
</div> <!-- end: #left_column_date_search -->



#left_column_date_search { width: 36px; float: left; overflow: hidden;}
#left_column_date_search a {
display: block;
position: relative;
color: #fff;
text-shadow: 1px 0px 0px #000;
text-decoration: none;
}
#left_column_date_search a.selected {
/* background: url(/images/structure/city-search-grad-selected.jpg); */
color: #660000;
text-shadow: 0px 1px 0px #9e4a4a;
}
#left_column_date_search a:hover {
background: url(/images/structure/city-search-grad-hover.png);
}
#left_column_date_search a.a1{ height: 73px !important; }
#left_column_date_search a.a2 { height: 73px !important; }
#left_column_date_search a.a3 { height: 100px !important; }
#left_column_date_search a.a4 { height: 100px !important; }
#left_column_date_search a.a5 { height: 100px !important; }
#left_column_date_search a.a6 { height: 100px !important; }
#left_column_date_search a.a7 { height: 100px !important; }

#left_column_date_search a span {
display: block;
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
position: absolute;
top: 0px;
left: 0px;
}

但我得到的是:

enter image description here

有什么建议吗?

最佳答案

这是我的解决方案。我已经更新了您的 HTML 和 CSS 以允许这样做。这是一个活生生的例子:http://jsfiddle.net/8RTaV/4/

HTML:

<div id='left_column_date_search'>
<a href='#' class='a1'>Dnes</a>
<a href='#' class='a2 selected'>Zítra</a>
<a href='#' class='a3'>Pátek</a>
<a href='#' class='a4'>Sobota</a>
</div> <!-- end: #left_column_date_search -->

CSS:

#left_column_date_search {
background: #000;
width: 36px;
float: left;
}
#left_column_date_search a {
display: block;
height: 60px;
width: 60px;
color: #fff;
text-shadow: 1px 0px 0px #000;
text-decoration: none;
line-height: 31px;
margin: 5px 0 0;
text-align: center;
}
#left_column_date_search a.selected {
/* background: url(/images/structure/city-search-grad-selected.jpg); */
color: #660000;
text-shadow: 0px 1px 0px #9e4a4a;
}
#left_column_date_search a:hover {
background: url(/images/structure/city-search-grad-hover.png);
}
#left_column_date_search a{
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
}

关于css - 如何在 HTML 中制作垂直旋转的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6713943/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com