Home  >  Article  >  Web Front-end  >  帮我看看这个怎么实现的。。。。。_html/css_WEB-ITnose

帮我看看这个怎么实现的。。。。。_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:21:32770browse

html css js




我想让下面那个框和百度搜索提示框样式一样 怎么做。

回复讨论(解决方案)

* {            margin:0;            padding:0;        }        body {            margin:20px;        }        div {            position:relative;        }        ul {            list-style-type:none;            border:1px solid #ccc;            position:absolute;            display:none;            border-top:none;        }        li {            padding:5px;        }            li:hover {                background-color:#fc0;            }


  • xhtml
  • javascript
  • jquery
  • sql server
  • asp.net
  • c#
  • other


     

http://bbs.csdn.net/topics/390467560

要去掉默认的li的list-style样式

* {            margin:0;            padding:0;        }        body {            margin:20px;        }        div {            position:relative;        }        ul {            list-style-type:none;            border:1px solid #ccc;            position:absolute;            display:none;            border-top:none;        }        li {            padding:5px;        }            li:hover {                background-color:#fc0;            }


  • xhtml
  • javascript
  • jquery
  • sql server
  • asp.net
  • c#
  • other


     




那个框怎么覆盖后面的文字啊  

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn