如何从锥形梯度代码中删除计算

How to remove calc from conic-gradient code

没有calc这个渐变代码怎么写?

这就是我想弄清楚如何做的全部。 https://jsfiddle.net/gwrcep3q/

.exitnew {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  
  --b: 7px;
  --c: green 90deg, blue 0;
  background: conic-gradient(from 90deg at var(--b) var(--b), var(--c)) calc(100% + var(--b)/2) calc(100% + var(--b)/2)/ calc(50% + var(--b)) calc(50% + var(--b));
  border: 5px solid red;
  border-radius: 50%;
  transform: rotate(45deg);
<button class="exitnew" type="button" aria-label="Close"></button>

我不知道你为什么坚持要删除 calc()。如果你害怕 calc() 但最好学习一些新东西,你可以使用 2 个渐变使你的代码更冗长:

.exitnew {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background:
    linear-gradient(green 0 0),
    linear-gradient(green 0 0)
    blue;
  background-size:7px 100%,100% 7px;
  background-position:center;
  background-repeat:no-repeat;
  border: 5px solid red;
  border-radius: 50%;
  transform: rotate(45deg);
<button class="exitnew" type="button" aria-label="Close"></button>