Javascript-форум (https://javascript.ru/forum/)
-   (X)HTML/CSS (https://javascript.ru/forum/xhtml-html-css/)
-   -   css - переменные (https://javascript.ru/forum/xhtml-html-css/81843-css-peremennye.html)

fori 04.02.2021 23:02

css - переменные
 
Здраствуйте, я никак не могу подружить calc и переменною, подскажите пожалуйста что идет не так...
<div>
</div>
<style>
--val:50;
div{
background:red;
width:calc(1% * --val);
height:calc(1% * --val);
}
</style>

рони 04.02.2021 23:46

fori,
var(--val)

рони 04.02.2021 23:50

fori,
<div>
</div>
<style>
body{
  height: 400px;
}
:root{
   --val:50;
}

div{
background:red;
width:calc(1% * var(--val));
height:calc(1% * var(--val));
}
</style>


Часовой пояс GMT +3, время: 03:37.