I have inherited some code that has odd-looking css in it:
.page-back {
display: inline-block;
position: absolute 12px * * 10px;
width: 40px;
height: 40px;
text-align: center;
}
The offending line is the one with position:
in it.
I have a feeling this is meant for some kind of transpiler/css pre-processor. I'm not using a pre-processor, so I need to figure out how to translate this into vanilla css.
For those of us who are accustomed to native css, what do these extra parameters on the position line mean? Happy to figure it out myself if someone can tell me which pre-processor/transpiler this is.
I've searched around but can't find a hit that tells me what's going on. The pattern I'm looking for doesn't seem to index well.
Here's the source of the code: https://github.com/ElemeFE/mint-ui/blob/c875541634c15f1f2e47e69f1e857eccdbe25e23/example/app.vue