垂直格式的处理步骤(向导)

时间:2016-03-31 04:07:13

标签: html css twitter-bootstrap-3 wizard

想要实现一个与此类似的流程步骤向导 - Process Steps in Horizontal Format

但是采用垂直格式!有人可以帮助CSS修改使这个垂直堆叠像左边的侧边栏。或者建议一些插件来实现相同的。

1 个答案:

答案 0 :(得分:2)

我修改了CSS我希望你能想到这样的东西。您可以看到工作示例here

body {
  margin: 40px;
}

.stepwizard-step p {
  margin-top: 10px;
  display: inline-block;
}

.stepwizard-row {
  display: table-row;
}

.stepwizard {
  display: table;
  width: 20%;
  position: relative;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
  left: 14px;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 1px;
  height: 100%;
  background-color: #ccc;
  z-order: 0;
}

.stepwizard-step {
  display: block;
  position: relative;
}

.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}