如何在面包屑时间线下放置子弹?

时间:2016-12-05 19:57:16

标签: html breadcrumbs timeline

我正试图在面包屑式时间轴下面放一些子弹点,但我无法弄清楚如何做到这一点。我试过这个:

    <h1>Sign-Up Instructions</h1>

<div id="crumbs">
    <ul>
    <li><a href="#1"><b>STEP 1:</b><br>Sign up and pay for<br>the options<br> you want</a></li>
    <br>
    <li> point here</li>
  </ul>
</div>
    <div id="crumbs">
  <ul>
    <li><a href="#2"><b>STEP 2:</b><br>Sign up for<br>online sessions<br>(held most weeks)</a>
    <li><a href="#3"><b>STEP 3:</b><br>Mock<br>OSCEs</a></li>
    <li><a href="#4"><b>STEP 4<br>(OPTIONAL):</b><br>Attend private<br>tutoring</a></li>
</ul>
</div>

但它将时间线的一部分与其余部分分开。我希望时间表能够在一起。

以下是工作时间表的HTML代码,没有要点:

 <h1>Sign-Up Instructions</h1>

<div id="crumbs">
    <ul class= "point">
    <li><a href="#1"><b>STEP 1:</b><br>Sign up and pay for<br>the options<br> you want</a></li>
    <li><a href="#2"><b>STEP 2:</b><br>Sign up for<br>online sessions<br>(held most weeks)</a></li>
    <li><a href="#3"><b>STEP 3:</b><br>Mock<br>OSCEs</a></li>
    <li><a href="#4"><b>STEP 4<br>(OPTIONAL):</b><br>Attend private<br>tutoring</a></li>
</ul>
</div>

有人能告诉我怎么做吗?感谢。

这是CSS:

h1 {
    margin-bottom: 20px;
    color: #4679bd;
    font-weight: 400;
    text-align: center;
  font-family: Verdana, Geneva, sans-serif;
}

body {
    margin: 0px;
    font-family: Helvetica;
    background: #f3f3f3;
  line-height:25px;
}

#crumbs {
    text-align: center;
  margin-left: em;
  margin-right: 1em;
}

#crumbs ul {
    list-style: none;
    display: inline-table;
   position: relative; 
}

#crumbs ul li {
    display: inline;
}

#crumbs ul li a {
    display: block;
    float: left;
    height: 130px;
    background: #8bdbed;
    text-align: center;
    padding: 50px 0px 0 120px;
    position: relative;
    margin: 0 10px 0 0;
    font-size: 20px;
    text-decoration: none;
    color: black;
  line-height:25px;
}

#crumbs ul li a:after {
    content: "";
    border-top: 90px solid transparent;
    border-bottom: 90px solid transparent;
    border-left: 90px solid #8bdbed;
    position: absolute;
    right: -90px;
    top: 0;
    z-index: 1;
}

#crumbs ul li a:before {
    content: "";
    border-top: 90px solid transparent;
    border-bottom: 90px solid transparent;
    border-left: 90px solid #f3f3f3;
    position: absolute;
    left: 0;
    top: 0;
}

#crumbs ul li:first-child a {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  padding-left: 20px;
}

#crumbs ul li:first-child a:before {
    display: none;
}

#crumbs ul li:last-child a {
    padding-right: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#crumbs ul li:last-child a:after {
    display: none;
}

/* Responsive */

@media (max-width: 1100px) {

    #crumbs ul {
        display: block;
    margin-left: 20%;
    margin-right: 20%;

    }

    #crumbs ul li {
        display: block;
        width: 100%;
    }

    #crumbs ul li a {
        float: none;
        padding: 20px 0 0 0;
        margin: 0 0 5px 0; 
    }

    #crumbs ul li a:before, #crumbs ul li a:after {
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
    }

    #crumbs ul li:first-child a {
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #crumbs ul li:last-child a {
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding-right: 0;
    }

  /*Max width for smaller screen size*/
  @media (max-width: 700px) {

    #crumbs ul {
        display: block;
    margin-left: 5%;
    margin-right: 10%;
    }

    #crumbs ul li {
        display: block;
        width: 100%;
    }

    #crumbs ul li a {
        float: none;
        padding: 10px 0 0 0;
        margin: 0 0 5px 0; 
    }

    #crumbs ul li a:before, #crumbs ul li a:after {
        border-top: 0;
        border-bottom: 0;
        border-left: 0;
    }

    #crumbs ul li:first-child a {
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    #crumbs ul li:last-child a {
        border-radius: 0;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

}

3 个答案:

答案 0 :(得分:0)

我认为在项目中放置另一个未排序的列表,可能就是您要找的内容:

<h1>Sign-Up Instructions</h1>
  <div id="crumbs">
    <ul class="point">
      <li>
        <a href="#1"><b>STEP 1:</b></a>
        <ul>
          <li>
            <a href="#1">Sign up and pay for<br>the options<br> you want</a>
          </li>
        </ul>
      </li>
      <li>
        <a href="#2"><b>STEP 2:</b></a>
        <ul>
          <li>
            <a href="#2">Sign up for<br>online sessions<br>(held most weeks)</a>
          </li>
        </ul>
      </li>
      ...
    </ul>
  </div>

答案 1 :(得分:0)

可能会有以下代码帮助!我已删除媒体查询表单样式以避免复杂性。 那里

  • 我在主要的ul列表项中添加了一个嵌套的ul。
  • 在嵌套的ul中添加了一个名为“test”的CSS类。相应地使用适当的名称。
  • 通过添加!important
  • 来打破父级ul的样式继承
  • 添加样式以使其成为通常的无序列表

h1 {
  margin-bottom: 20px;
  color: #4679bd;
  font-weight: 400;
  text-align: center;
  font-family: Verdana, Geneva, sans-serif;
}
body {
  margin: 0px;
  font-family: Helvetica;
  background: #f3f3f3;
  line-height: 25px;
}
#crumbs {
  text-align: center;
  margin-left: 1em;
  margin-right: 1em;
}
#crumbs ul {
  display: inline-table;
  position: relative;
}
#crumbs ul li {
  display: inline;
}
ul.test {
  float: left;
  margin-top: 200px;
  margin-left: -150px;
}
ul.test li {
  list-style: square!important;
  display: block!important;
  display: list-item!important;
}
#crumbs ul li a {
  display: block;
  float: left;
  height: 130px;
  background: #8bdbed;
  text-align: center;
  padding: 50px 0px 0 120px;
  position: relative;
  margin: 0 10px 0 0;
  font-size: 20px;
  text-decoration: none;
  color: black;
  line-height: 25px;
}
#crumbs ul li a:after {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #8bdbed;
  position: absolute;
  right: -90px;
  top: 0;
  z-index: 1;
}
#crumbs ul li a:before {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
}
#crumbs ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 20px;
}
#crumbs ul li:first-child a:before {
  display: none;
}
#crumbs ul li:last-child a {
  padding-right: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#crumbs ul li:last-child a:after {
  display: none;
}
<div id="crumbs">
  <ul class="list-unstyled">
    <li class="">
      <a href="#1"><b>STEP 1:</b><br>Sign up and pay for<br>the options<br> you want</a>
      <ul class="test">
        <li>1st point here</li>

        <li>2nd point here</li>

        <li>3rd point here</li>
      </ul>
    </li>
    <li></li>
    <li class="">
      <a href="#2"><b>STEP 2:</b><br>Sign up for<br>online sessions<br>(held most weeks)</a>
      <ul class="test">
        <li>1st point here</li>

        <li>2nd point here</li>

        <li>3rd point here</li>
      </ul>
    </li>
    <li class=""><a href="#3"><b>STEP 3:</b><br>Mock<br>OSCEs</a>
    </li>

    <li class=""><a href="#4"><b>STEP 4<br>(OPTIONAL):</b><br>Attend private<br>tutoring</a>
    </li>
  </ul>
</div>

JSFiddle

答案 2 :(得分:0)

将此规则集添加到CSS:

.bullet {
  font-size: 50px;
  color: #000;
  text-align: center;
  margin: 20px auto;
}

并在每个<li>

下方添加此内容
<li class='bullet'>∗</li>

PLUNKER

&#13;
&#13;
h1 {
  margin-bottom: 20px;
  color: #4679bd;
  font-weight: 400;
  text-align: center;
  font-family: Verdana, Geneva, sans-serif;
}
body {
  margin: 0px;
  font-family: Helvetica;
  background: #f3f3f3;
  line-height: 25px;
}
#crumbs {
  text-align: center;
  margin-left: 1em;
  margin-right: 1em;
}
#crumbs ul {
  list-style: none;
  display: inline-table;
  position: relative;
}
#crumbs ul li {
  display: inline;
}
#crumbs ul li a {
  display: block;
  float: left;
  height: 130px;
  background: #8bdbed;
  text-align: center;
  padding: 50px 0 0 120px;
  position: relative;
  margin: 0 10px 0 0;
  font-size: 20px;
  text-decoration: none;
  color: black;
  line-height: 25px;
}
#crumbs ul li a:after {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #8bdbed;
  position: absolute;
  right: -90px;
  top: 0;
  z-index: 1;
}
#crumbs ul li a:before {
  content: "";
  border-top: 90px solid transparent;
  border-bottom: 90px solid transparent;
  border-left: 90px solid #f3f3f3;
  position: absolute;
  left: 0;
  top: 0;
}
#crumbs ul li:first-child a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 20px;
}
#crumbs ul li:first-child a:before {
  display: none;
}
#crumbs ul li:last-child a {
  padding-right: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#crumbs ul li:last-child a:after {
  display: none;
}
.bullet {
  font-size: 50px;
  color: #000;
  text-align: center;
  margin: 20px auto;
}
/* Responsive */

@media (max-width: 1100px) {
  #crumbs ul {
    display: block;
    margin-left: 20%;
    margin-right: 20%;
  }
  #crumbs ul li {
    display: block;
    width: 100%;
  }
  #crumbs ul li a {
    float: none;
    padding: 20px 0 0 0;
    margin: 0 0 5px 0;
  }
  #crumbs ul li a:before,
  #crumbs ul li a:after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
  #crumbs ul li:first-child a {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #crumbs ul li:last-child a {
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding-right: 0;
  }
}
/*Max width for smaller screen size*/

@media(max-width: 700px) {
  #crumbs ul {
    display: block;
    margin-left: 5%;
    margin-right: 10%;
  }
  #crumbs ul li {
    display: block;
    width: 100%;
  }
  #crumbs ul li a {
    float: none;
    padding: 10px 0 0 0;
    margin: 0 0 5px 0;
  }
  #crumbs ul li a:before,
  #crumbs ul li a:after {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
  }
  #crumbs ul li:first-child a {
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  #crumbs ul li:last-child a {
    border-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
&#13;
<!DOCTYPE html>
<html>

<head>
  <link rel="stylesheet" href="style.css">
  <script src="script.js"></script>
</head>

<body>
  <h1>Sign-Up Instructions</h1>

  <div id="crumbs">
    <ul>
      <li class='bullet'>∗</li>
      <li><a href="#1"><b>STEP 1:</b><br>Sign up and pay for<br>the options<br> you want</a>
      </li>
      <li class='bullet'>∗</li>
      <li><a href="#2"><b>STEP 2:</b><br>Sign up for<br>online sessions<br>(held most weeks)</a>
      </li>
      <li class='bullet'>∗</li>
      <li><a href="#3"><b>STEP 3:</b><br>Mock<br>OSCEs</a>
      </li>
      <li class='bullet'>∗</li>
      <li><a href="#4"><b>STEP 4<br>(OPTIONAL):</b><br>Attend private<br>tutoring</a>
      </li>
      <li class='bullet'>∗</li>
    </ul>
  </div>
</body>

</html>
&#13;
&#13;
&#13;