Hbuilder快捷方式

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/hlx20080808/article/details/84552762

HTML的快捷方式:

 sel 回车==> <select name="">
		<option value=""></option>
	    </select>

 img回车==><img src=""/>

CSS的快捷方式:

st===>  <style type="text/css"> </style>

bd+tab===>  border: 1px solid #000;

db+tab===>  display: block;

dn+tab===>  display: none;

oh+tab===>  overflow: hidden;

posa+tab===> position: absolute;

posr+tab===> position: relative;

mr+tab===>margin-right: 

bdb+tab===>border-bottom: ;

bg+tab===>background: #000;

JS的快捷方式:

funn回车==>  function function_name () {
            
        }

sc回车==> <script type="text/javascript">
        
    </script>

dg回车==>document.getElementById("")

dc回车==>document.createElement("")

猜你喜欢

转载自blog.csdn.net/hlx20080808/article/details/84552762