zoukankan      html  css  js  c++  java
  • Html的部分常用技巧

    解决下拉列表框显示在层上面的问题
    在层里面加上一个iframe,优先级就比下拉列表框高了
    <iframe style="position:absolute; visibility:inherit; top:0px; left:0px; 640px; height:100%; z-index:-1;"></iframe>

    颜色渐变
    style="filter:progid:DXImageTransform.Microsoft.Gradient(startColorStr='#FFFFFF', endColorStr='#3F8CDA', gradientType='1')"

    截断英文单词
    style="word-wrap:break-word" style="word-break:break-all"

    带阴影的文字
    style="filter: DropShadow(Color=#dddddd, OffX=1, OffY=1);height:12px;font-family:Verdana;CURSOR: hand"

    文字的白边
    <P style="MARGIN-LEFT: 3px; MARGIN-TOP: 5px">

    文字的间距
    style="LETTER-SPACING:1px;line-height:150%"

    表格不随内容撑大
    style="table-layout:fixed;"

    固定的一个地方显示较多数据
    简单将你的控件放在一个DIV中将overflow属性设置成auto
    <div style="height:400px;200px;overflow:auto">
    <asp:datagrid id="MyGrid" runat="server"/>
    </div>

    用层遮盖其他东西(相对定位)
    <center>
    <div style="position:absolute;">
    <div style="position:absolute;left:-50;top:-58"><table><tr><td width=100 height=16 bgcolor=ffff00></td></tr></table></div>
    </div>
    </center>

    透明
    style="FILTER: Alpha(Opacity=100, style=1)"

    使用CSS替换图片
    star:expression(
        onmouseover = function()
        {
            /*替换图片*/
            if(this.hover != null){
              this.name = this.src;
              this.src = this.src.replace('.jpg', '_over.jpg');
              this.HasChg = 1;
           }
       },
       onmouseout = function()
      {  
           /*还原本来的图片*/
         if(this.HasChg != null){
            this.src = this.name;
            this.HasChg = null;
        }
    }
  • 相关阅读:
    Nginx中如何配置中文域名?
    VS2012找不到EF框架实体模型的解决方法
    来自一位家长的电话
    孩子大了真是不好管了
    springboot项目不加端口号也可以访问项目的方法
    分享几个上机案例题
    今晚在学校值班……
    3班的第二次模拟面试
    Sword 09
    Sword 06
  • 原文地址:https://www.cnblogs.com/chy710/p/550085.html
Copyright © 2011-2022 走看看