zoukankan
html css js c++ java
IE6中用了float:left之后导致marginleft双倍边距的BUG解决方法
先看css代码:
div
{
}
{
float
:
left
;
margin-left
:
10px
;
width
:
420px
;
height
:
150px
;
border
:
1px solid #ff0000
;
}
这样设置左边距设置为
10px
,但
IE6.0
解释为20px
,解决办法就是是加上
display:inline
代码:
div
{
}
{
float
:
left
;
margin-left
:
10px
;
display
:
inline
;
width
:
420px
;
height
:
150px
;
border
:
1px solid #ff0000
;
}
查看全文
相关阅读:
CSS之Position详解
线性回归预测法linear regression
置信区间
asp.net MVC 中使用dataannotation验证Model
决策树Decision Tree
Net反射在项目中的应用
C#并行编程并行任务
一个特殊的产品价格制定法(市场决定价格)
Json
线性规划模型(线性优化模型)Linear programming
原文地址:https://www.cnblogs.com/ywkpl/p/1208097.html
最新文章
Poj 3696 millerrabin pollardrho解法
算法导论数论元素的幂
Poj 2603 约数个数和
算法导论数论求解模线性方程
Poj 2480
Poj 1995 幂取模
Zju2678 大数gcd
Poj 2773 Happy 2006(枚举互素数)
Poj 2262
Poj 3641
热门文章
DDLLY命名空间中MyGenerationNHibernate模板问题解决!
呵呵~ 博客申请成功了!!~~
JAVA:主键解决方法(1):最大值+1
Simple NUnit test
单元测试:
java笔记
VC和PE的概念
使用ModelBinder处理Actin实体类型参数
SWOT分析法
均值,中值,标准差,方差,正态分布等名词术语
Copyright © 2011-2022 走看看