240 发简信
IP属地:山西
  • box-sizing

    box-sizing常用的属性有哪些?分别有什么作用? (Q1)box-sizing: content-box|border-box|inher...

  • 遮罩层

    .tanchuang_box .zhezhaoceng{position:absolute;top:0;width:100%;height:10...

  • 文本

    1.文本不换行,在同一行显示 white-space:nowarp; overflow:hidden; text-overflow:ellips...

  • 轮播图

    *{padding:0; margin:0} li{ list-style:none} .banner{width:730px; height:...

  • 鼠标经过出子级菜单JS

    $(function(){ $(".nav > li").mouseenter(function(){ $(this).children("ul...

  • 点击出下拉菜单JS

    $(document).ready(function() { $(".list").click(function(){ if ($(this)....

  • 选项卡JS

    $(document).ready(function() { $(".xuanxiangka li").click(function(){ $(...

  • 清除浮动的方法

    清除浮动有哪些方式?比较好的方式是哪一种? (Q1) (1)父级div定义height。 (2)结尾处加空div标签clear:both。 (3...