如何将ul popover类与我各自的部分对齐?

时间:2017-02-16 18:26:33

标签: html css

我正在尝试创建各个部分的popover类,但它没有按照需要对齐。

我希望它看起来像这样:https://www.screencast.com/t/DrbkBj36M

这是我的CSS / HTML。非常感谢帮助。

.filters {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    min-height: 70px;
    max-height: 70px;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    padding: 10px;
    padding-right: 30px;
}

.locations {
  border-right: #DDDDDD solid 1px;
}

.locations, .amenities {
  height: 100%;
  padding-left: 30px;
  flex-grow: 1;
  text-align: left;
}

h3 {
  font-weight: 600;
  line-height: .6;
}

h4 {
   font-weight: 400;
   font-size: 14px;
   line-height: .6;
}

button {
  border:none;
  border-radius: 4px;
  width: 20%;
  height: 48px;
  font-size: 18px;
  background-color: #FF5A5F;
  color: white;
  margin: 0 30px 0 auto;
}

button:hover {
  opacity: 0.9;
}

.popover {
  position: absolute;
  display: none;
  width: inherit;
  font-size: 16px;
  background-color:#FAFAFA;
  border: #DDDDDD 1px solid;
  border-radius: 4px;
  padding: 0 30px 30px 30px;
  margin: 0;
}


.locations:hover .popover {
  display: block;
}

.amenities:hover .popover {
  display: block;
  padding-top: 30px;
}
<!DOCTYPE html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <link rel="stylesheet" type="text/css" href="4-common.css" media="all">
    <link rel="stylesheet" type="text/css" href="6-filters.css" media="all">
    <link rel="icon" type="image/x-icon" href="images/favicon.ico" sizes="16x16">
  </head>
  <body>
    <header>
    </header>

    <div class="container">
      <section class="filters">
      <div class="locations">
        <h3>States</h3>
        <h4>California, New York...</h4>
        <ul class="popover">
          <h2>California</h2>
            <li>Berkeley</li>
            <li>Los Angeles</li>
            <li>San Francisco</li>
          <h2>New York</h2>
          <li>New York</li>
        </ul>
      </div>
      <div class="amenities">
        <h3>Amenities</h3>
        <h4>Internet, kitchen...</h4>
        <ul class="popover">
          <h2>Amenities</h2>
          <li>Fiber internets</li>
          <li>Big stove</li>
          <li>Cryogenic chamber</li>
        </ul>
      </div>
      <button>Search</button>
      </section>
    </div>
  </body>
</html>

1 个答案:

答案 0 :(得分:0)

呃......这就是你想要的吗?

.filters {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    height: 70px;
    width: 100%;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    padding-right: 30px;
}

.locations {
  border-right: #DDDDDD solid 1px;
}

.locations, .amenities {
  height: 100%;
  padding-left: 30px;
  flex-grow: 1;
  text-align: left;
  position: relative;
}

h3 {
  font-weight: 600;
  line-height: .6;
}

h4 {
   font-weight: 400;
   font-size: 14px;
   line-height: .6;
}

button {
  border:none;
  border-radius: 4px;
  width: 20%;
  height: 48px;
  font-size: 18px;
  background-color: #FF5A5F;
  color: white;
  margin: 0 30px 0 auto;
}

button:hover {
  opacity: 0.9;
}

.popover {
  position: absolute;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  display: none;
  width: inherit;
  font-size: 16px;
  background-color:#FAFAFA;
  border: #DDDDDD 1px solid;
  border-radius: 4px;
  padding: 0 30px 30px 30px;
  margin-top: 1px;
  margin-left: -1px;
}
.amenities .popover
{
    margin-left: -2px;
}


.locations:hover .popover {
  display: block;
}

.amenities:hover .popover {
  display: block;
  padding-top: 30px;
}
<!DOCTYPE html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <link rel="stylesheet" type="text/css" href="4-common.css" media="all">
    <link rel="stylesheet" type="text/css" href="6-filters.css" media="all">
    <link rel="icon" type="image/x-icon" href="images/favicon.ico" sizes="16x16">
  </head>
  <body>
    <header>
    </header>

    <div class="container">
      <section class="filters">
      <div class="locations">
        <h3>States</h3>
        <h4>California, New York...</h4>
        <ul class="popover">
          <h2>California</h2>
            <li>Berkeley</li>
            <li>Los Angeles</li>
            <li>San Francisco</li>
          <h2>New York</h2>
          <li>New York</li>
        </ul>
      </div>
      <div class="amenities">
        <h3>Amenities</h3>
        <h4>Internet, kitchen...</h4>
        <ul class="popover">
          <h2>Amenities</h2>
          <li>Fiber internets</li>
          <li>Big stove</li>
          <li>Cryogenic chamber</li>
        </ul>
      </div>
      <button>Search</button>
      </section>
    </div>
  </body>
</html>