Within my CSS file, I have the following code snippet:
#myClass {
position: absolute;
height: 6px;
width: 100%;
bottom: 66%; << here is 66%
left: 0;
right: 0;
background-color: #666;
cursor: n-resize;
}
Currently, the bottom percentage value is set to 66%.
However, I am trying to achieve one of the following options:
bottom: ~calc(66% - 35px);
or this
bottom: calc(66% - 35px);
Unfortunately, I have not been successful with either approach. Can anyone provide assistance?