复选框CSS之后,将标签内容对齐



我从> source st flow pyseck sterpl

.toggle-button {
    margin: 0 20px;
}
/*
   * Toggle button styles
   */
.toggle-button {
    position: relative;
    display: inline-block;
    color: rgb(80, 77, 77);
}
.toggle-button label {
    display: inline-block;
    cursor: pointer;
    text-align: left;
}
.toggle-button input {
    display: none;
}
.toggle-button__icon {
    cursor: pointer;
    pointer-events: none;
}
.toggle-button__icon:before,
.toggle-button__icon:after {
    content: "";
    position: absolute;
    top: 45%;
    left: 35%;
    transition: 0.2s ease-out;
}
.toggle-button--tuli label {
    line-height: 20px;
    text-indent: 30px;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon {
    background: #fff;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:before,
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:after {
    opacity: 1;
}
.toggle-button--tuli .toggle-button__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transition: all 0.2s;
    border: 2px solid rgb(37, 146, 236);
    border-radius: 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.toggle-button--tuli .toggle-button__icon:before,
.toggle-button--tuli .toggle-button__icon:after {
    top: 5px;
    left: 2px;
    width: 12px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    top: 35%;
    background: #0175b2;
    opacity: 0;
    transform-origin: left center;
}
.toggle-button--tuli .toggle-button__icon:before {
    transform: translate(0, 0) rotate(45deg) scale(0.6, 1);
}
.toggle-button--tuli .toggle-button__icon:after {
    transform: translate(4px, 6px) rotate(-45deg);
}
.toggle-button--tuli:hover input[type=checkbox]:not(:checked)~.toggle-button__icon {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="toggle-button toggle-button--tuli">
  <input id="toggleButton11" type="checkbox">
  <label for="toggleButton11">I confirm that I have read and agree to the <a href="#" style="color:#2c6ed7">Terms of Use</a> specified by the client and some long text to continue with to show the alignment below checkbox</label>
  <div class="toggle-button__icon"></div>
</div>

如果您运行摘要,您可以看到,当标签内容破坏行时,它会在复选框下方。如何修改CSS以对齐标签内容以在复选框之后出现。我尝试过text-indent,但这仅适用于第一行。希望找到一些帮助。

而不是text-indent使用padding-left,它将按照您的意愿工作:

.toggle-button {
    margin: 0 20px;
}
/*
   * Toggle button styles
   */
.toggle-button {
    position: relative;
    display: inline-block;
    color: rgb(80, 77, 77);
}
.toggle-button label {
    display: inline-block;
    cursor: pointer;
    text-align: left;
}
.toggle-button input {
    display: none;
}
.toggle-button__icon {
    cursor: pointer;
    pointer-events: none;
}
.toggle-button__icon:before,
.toggle-button__icon:after {
    content: "";
    position: absolute;
    top: 45%;
    left: 35%;
    transition: 0.2s ease-out;
}
.toggle-button--tuli label {
    line-height: 20px;
    padding-left: 30px;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon {
    background: #fff;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:before,
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:after {
    opacity: 1;
}
.toggle-button--tuli .toggle-button__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transition: all 0.2s;
    border: 2px solid rgb(37, 146, 236);
    border-radius: 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.toggle-button--tuli .toggle-button__icon:before,
.toggle-button--tuli .toggle-button__icon:after {
    top: 5px;
    left: 2px;
    width: 12px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    top: 35%;
    background: #0175b2;
    opacity: 0;
    transform-origin: left center;
}
.toggle-button--tuli .toggle-button__icon:before {
    transform: translate(0, 0) rotate(45deg) scale(0.6, 1);
}
.toggle-button--tuli .toggle-button__icon:after {
    transform: translate(4px, 6px) rotate(-45deg);
}
.toggle-button--tuli:hover input[type=checkbox]:not(:checked)~.toggle-button__icon {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="toggle-button toggle-button--tuli">
  <input id="toggleButton11" type="checkbox">
  <label for="toggleButton11">I confirm that I have read and agree to the <a href="#" style="color:#2c6ed7">Terms of Use</a> specified by the client and some long text to continue with to show the alignment below checkbox</label>
  <div class="toggle-button__icon"></div>
</div>

对于label,使用填充代替text-indent

.toggle-button--tuli label {
    line-height: 20px;
    padding-left: 30px;
}

它将添加文本左填充物,并且该按钮将在左侧对齐,因为它是绝对放置的。

如果您删除了text-indent并使用应起作用的padding-left

.toggle-button {
    margin: 0 20px;
}
/*
   * Toggle button styles
   */
.toggle-button {
    position: relative;
    display: inline-block;
    color: rgb(80, 77, 77);
}
.toggle-button label {
    display: inline-block;
    cursor: pointer;
    text-align: left;
}
.toggle-button input {
    display: none;
}
.toggle-button__icon {
    cursor: pointer;
    pointer-events: none;
}
.toggle-button__icon:before,
.toggle-button__icon:after {
    content: "";
    position: absolute;
    top: 45%;
    left: 35%;
    transition: 0.2s ease-out;
}
.toggle-button--tuli label {
  line-height: 20px;
  padding-left: 30px;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon {
    background: #fff;
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:before,
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:after {
    opacity: 1;
}
.toggle-button--tuli .toggle-button__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    transition: all 0.2s;
    border: 2px solid rgb(37, 146, 236);
    border-radius: 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.toggle-button--tuli .toggle-button__icon:before,
.toggle-button--tuli .toggle-button__icon:after {
    top: 5px;
    left: 2px;
    width: 12px;
    height: 2px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    top: 35%;
    background: #0175b2;
    opacity: 0;
    transform-origin: left center;
}
.toggle-button--tuli .toggle-button__icon:before {
    transform: translate(0, 0) rotate(45deg) scale(0.6, 1);
}
.toggle-button--tuli .toggle-button__icon:after {
    transform: translate(4px, 6px) rotate(-45deg);
}
.toggle-button--tuli:hover input[type=checkbox]:not(:checked)~.toggle-button__icon {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="toggle-button toggle-button--tuli">
  <input id="toggleButton11" type="checkbox">
  <label for="toggleButton11">I confirm that I have read and agree to the <a href="#" style="color:#2c6ed7">Terms of Use</a> specified by the client and some long text to continue with to show the alignment below checkbox</label>
  <div class="toggle-button__icon"></div>
</div>

我已经更新了答案。padding-left将允许检测到单击。

.toggle-button {
  margin: 0 20px;
  position: relative;
  display: inline-block;
  color: #504d4d
}
.toggle-button__icon {
  cursor: pointer;
  pointer-events: none
}
.toggle-button label {
  display: inline-block;
  cursor: pointer;
  text-align: left
}
.toggle-button input {
  display: none
}
.toggle-button--tuli label {
  line-height: 20px;
  padding-left: 25px
}
.toggle-button__icon:before,
.toggle-button__icon:after {
  content: "";
  position: absolute;
  top: 45%;
  left: 35%;
  transition: .2s ease-out
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon {
  background: #fff
}
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:before,
.toggle-button--tuli input[type=checkbox]:checked~.toggle-button__icon:after {
  opacity: 1
}
.toggle-button--tuli .toggle-button__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  transition: all .2s;
  border: 2px solid #2592ec;
  border-radius: 1px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1)
}
.toggle-button--tuli .toggle-button__icon:before,
.toggle-button--tuli .toggle-button__icon:after {
  top: 5px;
  left: 2px;
  width: 12px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  top: 35%;
  background: #0175b2;
  opacity: 0;
  transform-origin: left center
}
.toggle-button--tuli .toggle-button__icon:before {
  transform: translate(0, 0) rotate(45deg) scale(0.6, 1)
}
.toggle-button--tuli .toggle-button__icon:after {
  transform: translate(4px, 6px) rotate(-45deg)
}
.toggle-button--tuli:hover input[type=checkbox]:not(:checked)~.toggle-button__icon {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2)
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="toggle-button toggle-button--tuli">
  <input id="toggleButton11" type="checkbox">
  <label for="toggleButton11">I confirm that I have read and agree to the <a href="#" style="color:#2c6ed7">Terms of Use</a> specified by the client and some long text to continue with to show the alignment below checkbox</label>
  <div class="toggle-button__icon"></div>
</div>

在这里您去

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
 <div class="checkbox">
    <label><input type="checkbox"> I confirm that I have read and agree to the Terms 
	of Use specified by the client and some long text to continue with to show the alignment below checkbox
	 I confirm that I have read and agree to the Terms 
	of Use specified by the client and some long text to continue with to show the alignment below checkbox</label>
  </div>

尝试此代码..

最新更新