古くから色変数をr,g,bに分けて定義し、
color: rgba(var(--r), var(--g), var(--b), 1);
みたいにやる手法はあったけど、「色変数をr,g,bに分けて定義」できない環境(--myColor: #f00; みたいに定義されている)では使えないRE: https://misskey.io/notes/9x4a3mu60bsk0c8g
古くから色変数をr,g,bに分けて定義し、
color: rgba(var(--r), var(--g), var(--b), 1);
みたいにやる手法はあったけど、「色変数をr,g,bに分けて定義」できない環境(--myColor: #f00; みたいに定義されている)では使えないI can set the start position of a CSS `linear-gradient` with an angle, a starting position & direction, or a rotation from 0,0.
Is there a logical property value to set the start position / edge instead?
Like `inset-inline-start` to start from the left in LTR languages but from the right in RTL langs?
I want:
```
background:
linear-gradient(
inset-inline-start,
transparent 0%,
transparent calc(100% - 0.1em),
#f00 calc(100% - 0.1em),
#f00 100%
);
```
@jensimmons quick question, I'm trying to do relative css syntax with display-p3 but running into some issues w/Safari.
As I understand, I need to use color() fn to define a p3 color:
`color( display-p3 0 0 0 )`
So if I want to make that relative, that would become:
`color( display-p3 from #f00 r g b )`
but Safari doesn't seem to support color() fn with relative syntax:
`CSS.supports('color: color( display-p3 from #f00 r g b );')`
> `false`
Am I messing up the syntax?
<font color="#f00">
Red. Always red.
</font>
color:#F00; でもつけておいて
@lucida3da .column:nth-child(3) .column-header,.column:nth-child(3) .column-header__button{
background:#F00;
}
.column:nth-child(2) .column-header,.column:nth-child(2) .column-header__button{
background:#F0F;
}
こんな感じでカラムレベルで順番指定してその後指定すれば行けそうです。