Hello I am trying to get css grid working to be able to define both the start and end rows and the start and end columns for items in a grid. I dont want automatic flowing or moving things around.
`fn view(model: Model) -> Element(Msg) {
html.div([attribute.class("grid grid-col-5 grid-rows-10 ")], [
html.div([attribute.class("grid-row-start-2 ")], {
[
html.text("a"),
]
}),
html.div([attribute.class("grid-row-start-1 ")], {
[
html.text("2"),
]
}),
])
}`
This displays the 'a' above the '2', but I want it to display the '2' above the 'a'. It seems as though the css is not being parsed.
Any ideas ? Thanks.