欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

div+css

word-wrap: break-word; word-break: break-all 文字自动换行 中文 东亚 英文单词 有大用

********“  word-wrap: break-word; word-break: break-all;  ”**********
**********这个常常用到*****************

是为了单词自动换行的 特别是在ie6中常常用到



 

普通分类: 

html里是否是ie 来进行执行html代码 假如ie6 有大用 有大用

http://en.wikipedia.org/wiki/Conditional_comment

ifie if ie

html里是否是ie 来进行执行html代码

下面这四个是绝对ok

//下面是 IE6
<!--[if IE 6]>
<link rel="stylesheet" href="<?php echo $base_path . $directory; ?>/style.ie6.css" type="text/css" />
<![endif]-->

普通分类: 

所有的链接都在新窗口打开

<head>

普通分类: 

html a标签position为absolute时,IE浏览器无法显示为块(也就是ie6或ie7可能无法起作用)

html a标签position为absolute时,IE浏览器无法显示为块

如果给a加上一个background属性,颜色或图片都可以

 

普通分类: 

ie6浮动元素双边距

由于这个 Bug 对于 'display' 特性为 'inline' 的元素不会触发,所以可以通过设置 display:inline 消除此 Bug,由于此 Bug 仅在元素浮动时发生,而浮动将使该元素 'display' 特性计算为 'block' 或者 'table'(见 CSS2.1 规范第 9.7 Relationships between 'display', 'position', and 'float' 节),因此可以通过设置 display:inline 消除双边距 Bug。

普通分类: 

css 实现层半透明,且块内文字不透明(兼容ie6等各种浏览器)

 

我一般用的是 #divJeepDiv  {  
         filter:  alpha(opacity=50); /*ie*/

  opacity: 0.5;/*firfox*/

}

 

css 实现层半透明,且块内文字不透明(兼容ie6等各种浏览器)

兼容各浏览器且效果一致,有两种方法:

普通分类: 

弹出透明层,覆盖整个浏览器,页面元素的相对可视范围的不动 半透明层 两个div 两层div 覆盖 挡信 遮信 deepdiv

 

普通分类: 

dott_remove_ie7_OK

ow to solve the " click to activate and use this control" prompt box
To fix the problem, please follow these steps:

1) Just below the last <object> in your HTML page,
insert the following Javascript:

<script type="text/javascript" src="fixit.js"></script>

2) Open a new document in Notepad or your HTML editor,
and copy & paste the following content into it:




fixit.js的代码

普通分类: 

去掉虚线dotted a 和 video 等等 的虚框 虚线框 失去焦点? 有大用

去掉链接(包括图片链接)的虚线边框
/* for IE */
a,area { blr:expression(this.onFocus=this.blur()); }
/* for Firefox */
a:focus { outline: none; }

 


/*经检查 这个是完全好的 */
.indexTab ul li a{
    color:#313131;
    outline:none;
    blr:expression(this.onFocus=this.blur());
    }

*:focus { outline: none }

<a href="#p=01" hidefocus="true"><img src="uploadpic/2011429103167.jpg" alt="[field:title/]" /></a>

 

 

 

普通分类: 

css 透明度2 有大用 有用

我一般用的是 #divJeepDiv  {  

普通分类: 

css半透明度

    }
    .xiaoyuanbigtu span{
    color: #FFFFFF;
    display: block;
    height: 24px;
    left: 6px;
    line-height: 24px;
    position: absolute;
    top: 262px;
    width: 423px;
    text-align:center;
    background: none repeat scroll 0 0 #000000;
    opacity: 0.5;/*IE5、IE5.5、IE6、IE7 IE8*/
    filter:  alpha(opacity=50); /*Opera9.0+、Firefox1.5+、Safari、Chrome*/

 

    }

普通分类: 

页面

Subscribe to RSS - div+css