I'm currently attempting the following:
body {
height:100%;
background: -moz-linear-gradient(left, #DB2B39 50%, #2B303A 50%);
background: -webkit-linear-gradient(left, #DB2B39 50%,#2B303A 50%);
background: linear-gradient(to right, #DB2B39 50%,#2B303A 50%);
}
However, this code is only creating a horizontal split. It seems strange that you can't achieve a vertical split without stripes.
Is there something glaringly obvious that I'm missing?