srecord HLeftCenterRight(S left, S center, S right) { S headStuff() { ret hcss([[ .util-lcr { text-align: center; margin: 0 auto; width: 100%; } .util-lcr-left { position: absolute; top: 0; left: 0; transform: translateX(-100%) } .util-lcr-center { position: relative; display: inline-block; z-index: 2; } .util-lcr-right { background: blue; position: absolute; top: 0; right: 0; transform: translateX(100%) } ]]; } S get() { ret div_class(".util-lcr", unnull(center) + div_class(".util-lcr-left", left) + div_class(".util-lcr-right", right)); } }