- 主题:Re: 请教CSS布局问题。谢谢
手机浏览器上上下左右滑动有其固有的作用,一般没法传导到网页内容上
APP上才能这样干
【 在 zhtoad 的大作中提到: 】
: 各位大侠
: 小弟有一个CSS布局的问题,自己搞了半天,没有结果。
: 我的需求是:
: ...................
--
FROM 114.82.37.*
不知道你要的是不是这个意思:
<!DOCTYPE html>
<html>
<head>
<style>
* {
font-size: 14px;
}
.ul {
list-style-type: none;
height: 40px;
overflow: auto;
}
.ul::-webkit-scrollbar {
height: 1px;
width: 1px;
}
.ul>li {
white-space: nowrap;
overflow: auto;
padding: 5px 0;
height: 30px;
}
.ul>li::-webkit-scrollbar {
height: 1px;
width: 1px;
}
</style>
</head>
<body>
<ul class="ul">
<li>好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好好好 好好</li>
<li>Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good Good </li>
<li>Great GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat GreatGreat Great</li>
</ul>
</body>
</html>
--
FROM 157.159.40.*
是不是可以把每个label用span包装一下,加个类名,然后js写控制代码
【 在 zhtoad 的大作中提到: 】
: 我的 eachdayisnew 大哥。
: 差点就是我的了。我希望 一个li里面,空格隔开的也是独立的 label,这样我好加 onclick 事件。
: 能做成每行拆分成单个元素吗?
: ...................
--
FROM 152.78.0.*