HTML常用代码段

base64格式:

<img src="https://img-blog.csdnimg.cn/2022010621322249983.gif">
<img src="https://img-blog.csdnimg.cn/2022010621322254498.gif">

———————————————————————————————

ie注释方式:

<!--[if IE ]>
   <body class="ie">
<![endif]-->
<!--[if !IE]>-->
   <body>
<!--<![endif]-->
<!--[if IEMobile 7 ]>
  <html dir="ltr" lang="en-US"class="no-js iem7">
<![endif]-->
<!--[if lt IE 7 ]>
  <html dir="ltr" lang="en-US" class="no-js ie6 oldie">
<![endif]-->
<!--[if IE 7 ]>
  <html dir="ltr" lang="en-US" class="no-js ie7 oldie">
<![endif]-->
<!--[if IE 8 ]>
  <html dir="ltr" lang="en-US" class="no-js ie8 oldie">
<![endif]-->
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]> <-->
  <html dir="ltr" lang="en-US" class="no-js">
<!--> <![endif]-->

———————————————————————————————————————————————

ie8兼容大法
利用斜杠9来兼容ie8,有些属性只有ie9以上才支持,比如子选择器这种

093526_KhRU_3282363.png

———————————————————————————————————————————————

头图的背景设置:background-position:center bottom;

———————————————————————————————————————————————

透明边框:093704_7Sy1_3282363.png

body {
  background-color:red;
}
.div {
  display:inline-block;
  border: 10px solid rgba(255,255,255,.5);
  background: white;
  background-clip: padding-box;  
}

———————————————————————————————————————————————

媒体查询:

093825_34Lp_3282363.png

———————————————————————————————————————————————

上传多个文件:

<form method="post" action="upload.php" enctype="multipart/form-data">

<input name='uploads[]' type="file" multiple>

<input type="submit" value="Send">

</form>

后端php处理:

foreach ($_FILES['uploads']['name'] as $filename) {
    echo '<li>' . $filename . '</li>';
}

 

———————————————————————————————————————————————

自动选中框内的文本:

<textarea rows="10" cols="50" onclick="this.focus();this.select()" readonly="readonly">
   example text
</textarea>

———————————————————————————————————————————————

单行文本过长注释

div.test
{

white-space:nowrap;

width:12em;

overflow:hidden;

text-overflow:ellipsis;

}

 

———————————————————————————————————————————————

多行文本注释:

overflow: hidden;
text-overflow: ellipsis;
display: box;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

———————————————————————————————————————————————

095446_ksmx_3282363.png

<style type="text/css">
.parent {
    float: left;
    margin-right:20px;
    width: 200px;
    height: 100px;
    background-color: red;
}
.children {
    position: relative;
    left: 50%;
    top:50%;
    width:150px;
    -webkit-transform : translate3d(-50%, -50%, 0);
    transform : translate3d(-50%, -50%, 0);
    background-color: black;
    color:white;
}
</style>
<div class="parent">
    <div class="children">
        <div class="children_inline">一行文字水平垂直居中噢!</div>
    </div>
</div>
<div class="parent">
    <div class="children">
        <div class="children_inline">多行文字水平垂直居中噢!</div>
        <div class="children_inline">多行文字水平垂直居中噢!</div>
    </div>
</div>

 

———————————————————————————————————————————————

水平居中:子容器和父容器的宽度都不固定

094656_VDUl_3282363.png

094809_tzBL_3282363.png

094848_ekXV_3282363.png

094927_3LUw_3282363.png

094955_a7oi_3282363.png

垂直居中2

image

利用translate来居中。

垂直居中3

image

水平垂直居中

子容器和父容器高度宽度都不确定的情况下。

水平垂直居中1

image

兼容性好。

水平垂直居中2

image

不影响其他元素,但兼容性不好。

水平垂直居中3

image

多列布局

定宽与自适应

一列定宽,一列自适应。

方案1:

image

优点是容易理解。
缺点是由于右边不是浮动的,所以如果其中有清除浮动,就出现问题。

方案2:

image

通过右侧触发bfc来解决。

方案3:

image

table-layout可以提高渲染速度。

方案4:

image

两列定宽,一列自适应。

和一列定宽是类似的:

image

不定宽与自适应

不定宽是指宽度由内部元素撑起来

方案1:

主流方式。

image

方案2:

image

其中的0.1%是为了避免1px在ie8下的bug。

方案3:

image

flex万能大法,但是兼容行不行。

两列不定宽一列自适应是一个道理:

image

等宽

每一列中的宽度一样,每一列的间距一样。

方案1:

image

box-sizing:border-box是为了让宽度包含padding,父亲的margin-left需要和间距一致。

方案2:

image

优点是结构和样式解耦了,中间无论多少列都是等宽。
缺点是多了一些结构代码。

方案3:

image

这里的.column+.column选择的是第一列之外的后面几列。

等高

左列变高后,右列对应也要变高,我们需要两列是等高的。

方案1:

image

方案2:

image

方案3:

image

这种属于伪等高。

全屏布局

后台系统的标准配置,上左下区域固定宽高,右部自适应。

方案1:

image

方案2:

image

 

 

 

 

 

转载于:https://my.oschina.net/u/3282363/blog/871309

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值