size() with Canvas Style

void setup() {
  size(20,20);
  background(153);
}

void draw() {
  line(0, 0, width, height);
}