标签: html css css3 sass
我有一个具有CSS内联样式的div。有顶部和左侧位置。我需要修改div的来源。我希望顶部和左侧必须从div的左下角开始计算。有可能吗?
div的高度可以改变。
答案 0 :(得分:0)
根据您的计算修改值。
$bottomVal:100px; $topVal:$bottomVal - 10; $leftVal:$bottomVal - 15; .parentDiv{ top:$topVal; bottom:$bottomVal; left:$leftVal; }