惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
NISL@THU
NISL@THU
Application and Cybersecurity Blog
Application and Cybersecurity Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
E
Exploit-DB.com RSS Feed
Forbes - Security
Forbes - Security
Cyberwarzone
Cyberwarzone
Hacker News - Newest:
Hacker News - Newest: "LLM"
Schneier on Security
Schneier on Security
Webroot Blog
Webroot Blog
WordPress大学
WordPress大学
G
Google Developers Blog
Microsoft Azure Blog
Microsoft Azure Blog
C
Check Point Blog
Google DeepMind News
Google DeepMind News
S
Security @ Cisco Blogs
H
Help Net Security
T
Tenable Blog
Jina AI
Jina AI
阮一峰的网络日志
阮一峰的网络日志
Attack and Defense Labs
Attack and Defense Labs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
S
Schneier on Security
宝玉的分享
宝玉的分享
Help Net Security
Help Net Security
博客园 - 聂微东
A
Arctic Wolf
S
Securelist
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
Google Online Security Blog
Google Online Security Blog
O
OpenAI News
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
D
Darknet – Hacking Tools, Hacker News & Cyber Security
H
Hacker News: Front Page
Cisco Talos Blog
Cisco Talos Blog
P
Privacy International News Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
Martin Fowler
Martin Fowler
T
Troy Hunt's Blog
有赞技术团队
有赞技术团队
The Hacker News
The Hacker News
C
Cisco Blogs

博客园 - xwy.net

玩转ubuntu8.04,记录下碰到的问题,及解决 temp - xwy.net - 博客园 hibernate annotation+spring 级联更新问题解决 sitemesh,html乱码问题解决不了,难道一定要用jsp - xwy.net - 博客园 注意啦,Struts 2.1.6跟sitemesh-2.4.1不兼容 struts2+freemarker+sitemesh乱码,解决了 firefox3关闭缓存的办法 jQuery.Autocomplete(新版本)自动完成插件在中文应用时的BUG修正 - xwy.net - 博客园 搞定URL中文编码 - xwy.net - 博客园 关于Content-Length cxfc采用UsernameToken时的PasswordDigest问题 centos5.1远程升级ssh到5.0p1 asm冲突的问题,找了半天 莫名其妙的网络问题,原来是KB951748惹得祸 RHCS环境中oracle监听的问题 解决jasperreport生成html分页和打印问题 自制百香果汁(图) svn的RA layer request failed问题 MySQL的AUTO_INCREMENT
解决div里放table自适应的问题
xwy.net · 2009-04-20 · via 博客园 - xwy.net

右栏固定

左边内容分为:左边固定菜单栏,右边只适应内容栏

在ie6里会这样,table被左栏挤到下面去了,估计ie7也会,其他浏览器不会

 

修改内容的div这样就行了

#friendlistpanel {
    overflow
: auto;
    float
:left;
    width
:100%;
}

#friendlistpanel table 

{
    width
: 100%;
    text-align
: center;
}

重点是float:left,ie6就往上整了

如果div没写100%,ff里table就不能100%