idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
15楼#
发布于:2008-11-13 11:10
Cye3s:经典例子来了
http://dyestuff.blog.163.com/blog/stati ... 214462389/

可以改CSS解决-_-
其实是这个Bug,N久不解决,老加什么没用的新功能
https://bugzilla.mozilla.org/show_bug.cgi?id=215055
回到原帖



可以改CSS解决??? 有什麼通用的解决方案???
idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
16楼#
发布于:2008-11-13 11:10
   
meidog
火狐狸
火狐狸
  • UID26768
  • 注册日期2008-10-23
  • 最后登录2012-02-12
  • 发帖数126
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
17楼#
发布于:2008-11-13 11:10
http://www.mntt.com/ShowPost.asp?ThreadID=194881
这个链接很好很强大。。
可以用stylish修改该网站的CSS,设置
.ForumPostContentText {
overflow:visible;
}
可解决问题
meidog
火狐狸
火狐狸
  • UID26768
  • 注册日期2008-10-23
  • 最后登录2012-02-12
  • 发帖数126
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
18楼#
发布于:2008-11-13 11:10
不知道算不算是BUG,反正就是FX解释页面上CSS的overflow的时候造成的。解决办法一般就是手动把这个属性设为visible即可
idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
19楼#
发布于:2008-11-13 11:10
http://www.mntt.com/ShowPost.asp?ThreadID=194881
这个链接很好很强大。。
可以用stylish修改该网站的CSS,设置
.ForumPostContentText {
overflow:visible;
}
可解决问题


通用的解决方案吗?? 这样的问题好像10个贴图网站7-8个都有这样的问题!遇到一个设置一个太累了!
jakocoo
小狐狸
小狐狸
  • UID24464
  • 注册日期2008-06-05
  • 最后登录2009-12-18
  • 发帖数14
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
20楼#
发布于:2008-11-13 11:10
继续关注。。。
kissingfire
小狐狸
小狐狸
  • UID27017
  • 注册日期2008-11-13
  • 最后登录2008-11-25
  • 发帖数7
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
21楼#
发布于:2008-11-13 11:10
http://www.mntt.com/ShowPost.asp?ThreadID=194881
这个链接很好很强大。。
可以用stylish修改该网站的CSS,设置
.ForumPostContentText {
overflow:visible;
}
可解决问题

您好,我安装了Stylish 0.5.7
然后撰写了一个样式
代码就写

.ForumPostContentText {
overflow:visible;
}

好像没作用,是不是代码没写对?
请指教
kissingfire
小狐狸
小狐狸
  • UID27017
  • 注册日期2008-11-13
  • 最后登录2008-11-25
  • 发帖数7
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
22楼#
发布于:2008-11-13 11:10
@-moz-document domain(bbs.liouming.net){
  div[class="postmessage defaultpost"]{overflow:visible!important}
  table[class="t_table"]{width:100%!important}
}

用这个代码可以,但是每次切换代码里的网址太麻烦了
这个domain()里面写*好像不行
写什么能通用呢?

再请指教!
idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
23楼#
发布于:2008-11-13 11:10
kissingfire:@-moz-document domain(bbs.liouming.net){
  div[class="postmessage defaultpost"]{overflow:visible!important}
  table[class="t_table"]{width:100%!important}
}

用这个代码可以,但是每次切换代码里的网址太麻烦了
这个domain()里面写*好像不行
写什么能通用呢?

再请指教!
回到原帖


@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix(http), url-prefix(file) {
   div[class="postmessage defaultpost"]{overflow:visible!important}
  table[class="t_table"]{width:100%!important}
}
kissingfire
小狐狸
小狐狸
  • UID27017
  • 注册日期2008-11-13
  • 最后登录2008-11-25
  • 发帖数7
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
24楼#
发布于:2008-11-13 11:10

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document url-prefix(http), url-prefix(file) {
   div[class="postmessage defaultpost"]{overflow:visible!important}
  table[class="t_table"]{width:100%!important}
}


works!
多谢
idragonet
千年狐狸
千年狐狸
  • UID15658
  • 注册日期2006-11-12
  • 最后登录2017-11-15
  • 发帖数2642
  • 经验162枚
  • 威望1点
  • 贡献值74点
  • 好评度118点
  • 社区居民
25楼#
发布于:2008-11-13 11:10
kissingfire

works!
多谢
回到原帖



这个好象不是通用的吧?
yiding_he
小狐狸
小狐狸
  • UID23590
  • 注册日期2008-04-08
  • 最后登录2009-10-17
  • 发帖数40
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
26楼#
发布于:2008-11-13 11:10
Please, no more testcases, confirmations, or advocacy. This bug has already
been confirmed and is on the developers' radars; they know what the underlying
problem is and how best to fix it. Unfortunately no fix can be made for any
Firefox 3.0.x release. Any further comments that do not contribute to a fix
simply pile up in developers' inboxes (affectionately called "bug spam"),
distracting them from their work and often leading them to just unsubscribe
from the bug's CC list.
kissingfire
小狐狸
小狐狸
  • UID27017
  • 注册日期2008-11-13
  • 最后登录2008-11-25
  • 发帖数7
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
27楼#
发布于:2008-11-13 11:10


这个好象不是通用的吧?


er...刚没仔细测...
不是通用的...
没有通用的办法么...
kissingfire
小狐狸
小狐狸
  • UID27017
  • 注册日期2008-11-13
  • 最后登录2008-11-25
  • 发帖数7
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
28楼#
发布于:2008-11-13 11:10
yiding_he:Please, no more testcases, confirmations, or advocacy. This bug has already
been confirmed and is on the developers' radars; they know what the underlying
problem is and how best to fix it. Unfortunately no fix can be made for any
Firefox 3.0.x release. Any further comments that do not contribute to a fix
simply pile up in developers' inboxes (affectionately called "bug spam"),
distracting them from their work and often leading them to just unsubscribe
from the bug's CC list.
回到原帖


Sure, I respect their work.
I just want to find a easy way to get info on the pages with Firefox.
I think it doesn't matter that we do this before the fix is released.
meidog
火狐狸
火狐狸
  • UID26768
  • 注册日期2008-10-23
  • 最后登录2012-02-12
  • 发帖数126
  • 经验10枚
  • 威望0点
  • 贡献值0点
  • 好评度0点
29楼#
发布于:2008-11-13 11:10
kissingfire

er...刚没仔细测...
不是通用的...
没有通用的办法么...
回到原帖


不可能通用的,每个论坛的代码毕竟都有点不同。如果统一设置overflow的值的话,很明显的会出现其他的问题。so,对每个站单独设置是最好的方法。
游客

返回顶部