登录
立即注册
首页
>
绿虎论坛
>
历史版块
>
虎绿林
>
开发
求帮忙优化CSS:帖子底部的“展开隐藏内容”按钮太不明显,多个新用户没看到
回复列表(20|
隐藏机器人聊天
)
22
文森
@Ta
/ 2021-03-05 /
样
/
源
.floor_fold_bar button {
position: relative;
width: 110px;
height: 38px;
line-height: 36px;
display: block;
background: #2f8fd0;
color: #fff!important;
border-radius: 4px;
margin: 10px auto 0 auto;
text-align: center;
cursor: pointer;
border: 0;
padding: 0;
font-size: 14px;
text-shadow: 0 0 black;
}
.open{
position: absolute;
background: #2f8fd0;
bottom: 0;
right: 48px;
width: 0;
height: 0;
border-width: 6px 6px 4px;
border-style: solid;
border-color: #ffffff transparent transparent transparent;
}
.close{
position: absolute;
background: #2f8fd0;
top: 0;
right: 48px;
width: 0;
height: 0;
border-width: 4px 6px 6px;
border-style: solid;
border-color: transparent transparent #ffffff transparent;
}
效果显示:
<
1
2
>
添加新回复
回复需要
登录
。
position: relative;
width: 110px;
height: 38px;
line-height: 36px;
display: block;
background: #2f8fd0;
color: #fff!important;
border-radius: 4px;
margin: 10px auto 0 auto;
text-align: center;
cursor: pointer;
border: 0;
padding: 0;
font-size: 14px;
text-shadow: 0 0 black;
}
.open{
position: absolute;
background: #2f8fd0;
bottom: 0;
right: 48px;
width: 0;
height: 0;
border-width: 6px 6px 4px;
border-style: solid;
border-color: #ffffff transparent transparent transparent;
}
.close{
position: absolute;
background: #2f8fd0;
top: 0;
right: 48px;
width: 0;
height: 0;
border-width: 4px 6px 6px;
border-style: solid;
border-color: transparent transparent #ffffff transparent;
}
效果显示: