浏览模式: 普通 | 列表
5月, 2011 | 1

文字遇到图片行高失效解决方案

[ 2011-05-27 16:13:46 | 作者: admin ]
<style type="text/css">
<!--

#title {
        font-size: 12px;
        line-height: 26px;
}
 
#title a{zoom:1;} /*(关键) */

-->
</style>

nginx for windows之反向代理

[ 2011-05-27 12:30:24 | 作者: admin ]
1.编辑C:\nginx\conf\nginx.conf
添加修改以下内容:
#user nobody;
worker_processes 1;
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
pid logs/nginx.pid;
events {
        worker_connections 64;
}
http {
        include mime.types;
        default_type application/octet-stream;
        log_format main '$remote_addr - $remote_user [$time_local] $request '
...

阅读全文…
1