摘要:
substr(start,[length])表示从start位置开始取length个字符串;substring(start,end)表示从start,到end之间的字符串,包括start位置的字符但是不包括end位置的字符;若参数值为负数,则将该值转为0;两个参数中,取较小值作为开始位置,截取出来的 阅读全文
摘要:
共同点 word-wrap:break-word与word-break:break-all都能把长单词强行断句 不同点 word-wrap:break-word会首先起一个新行来放置长单词,新的行还是放不下这个长单词则会对长单词进行强制断句; word-break:break-all则不会把长单词放 阅读全文
摘要:
①右击,新建一个文本文档,复制下面内容并保存。 @echo off& setlocal enabledelayedexpansion for /f "delims=" %%1 in ('dir /a /b') do (set wind=%%1 ren "%%~1" "!wind:文档=!") ②将t 阅读全文
摘要:
<style> body{position: absolute; min-height: 100%; width: 100%;}content{padding-bottom:100px;} /*** padding-bottom的值为页脚的高度(若内容高度足够) ***/ footer{positi 阅读全文
摘要:
淘宝分页: div{position:relative; left:50%; float:left;} p{position:relative; left:-50%;} 阅读全文