是否可以在不使用列表标签的情况下仅使用html和css创建下拉列表

时间:2016-06-09 04:50:46

标签: html5 css3

我听说HTML5和CSS3中有一些功能可以实现一个下拉列表,该列表在悬停时展开,而不使用和等列表标记。

但我对如何实现这一点感到非常困惑。 它与flex有关吗?

1 个答案:

答案 0 :(得分:1)

这里只是一个下拉列表,只有HTML,CSS3和DIV没有列表,没有javascript,jquery等等。我希望这对你没问题。干杯:)



console.log(
  "2.00 pm to 5.00 pm".match(/\d{1,2}\.\d{2}/g)
)

.mainMenu {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 200px;
  height: 30px;
  background-color: darkgrey;
  color: black;
  font-family: Arial;
  line-height: 30px;
  -webkit-transition: max-height 0.5s ease-in-out;
  -moz-transition: max-height 0.5s ease-in-out;
  -o-transition: max-height 0.5s ease-in-out;
  transition: max-height 0.5s ease-in-out;
}

.mainMenu:hover {
  color: white;
  background-color: #2f6992;
  cursor: pointer;
  height: 150px;
}

.subMenu {
  width: 100%;
  height: 30px;
  padding-left: 5px;
}

.subMenu:hover {
  color: yellow;
}

.title {
  color: white;
  background-color: darkgrey;
  width: 100%;
  height: 30px;
  padding-left: 5px;
}