热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在sass中连接数字和“%”-Concatenateanumberand“%”insass

IwouldliketodothefollowingusingSASS:我想使用SASS执行以下操作:width:#{$percent}%;Where$percent

I would like to do the following using SASS:

我想使用SASS执行以下操作:

width: #{$percent}%;

Where $percent is a variable containing a number. If $percent is equal to 50, the precompiled CSS would be:

其中$ percent是包含数字的变量。如果$ percent等于50,则预编译的CSS将是:

width: 50%;

What syntax should I use?

我应该使用什么语法?

1 个解决方案

#1


19  

Multiply by 1%:

乘以1%:

$percent: 50

.foo
  width: $percent * 1%

Result:

.foo {
  width: 50%;
}

推荐阅读
author-avatar
兄弟465748208_279
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有