element中的Switch标签设置文字描述的显示位置

Posted web半晨

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element中的Switch标签设置文字描述的显示位置相关的知识,希望对你有一定的参考价值。


1、html

添加class=“switch”,避免全局样式污染。

<el-switch
	class="switch"
	v-model="switchvalue"
	:validate-event="true"
	active-text="新增"
	inactive-text="累计"
	inactive-color="#409EFF"
	:width="40"
	:active-value="1"
	:inactive-value="0"
	@change="agent_change"
>
</el-switch>

2、css

style标签不需要加任何属性,否则不起作用。<style lang=“scss” scoped>(不起作用),<style>(起作用)。

.switch .el-switch__label {
  position: absolute;
  display: none;
  color: #fff !important;
}

/*打开时文字位置设置*/
.switch .el-switch__label--right {
  z-index: 1;
}

/* 调整打开时文字的显示位子 */
.switch .el-switch__label--right span {
  margin-left: 9px;
}

/*关闭时文字位置设置*/
.switch .el-switch__label--left {
  z-index: 1;
}

/* 调整关闭时文字的显示位子 */
.switch .el-switch__label--left span {
  margin-left: 22px;
}

/*显示文字*/
.switch .el-switch__label.is-active {
  display: block;
}

/* 调整按钮的宽度 */
.switch.el-switch .el-switch__core,
.el-switch .el-switch__label {
  width: 60px !important;
  margin: 0;
}

3、原文参考链接

原文链接

以上是关于element中的Switch标签设置文字描述的显示位置的主要内容,如果未能解决你的问题,请参考以下文章

elementui里switch设置disabled切换不生

如何修改el-form标签中label的文字颜色

怎么让label标签中的文字居中显示

P标签中的文字如何设置成多种颜色

html标签

element UI使用