I have a CSS code for a small image file (.png) sized 40x40px that I want to use as a background spread all over the body. Initially, I used 'fixed' which worked but the image didn't move with other elements when scrolling.
body{
background:url('short.png') fixed;
}
Then, I attempted to use repeat-x or repeat-y, but I'm unsure how to implement both in the body tag.
body{
background:url('short.png') repeat-x;
}
My image file is 40x40px and I want to apply it everywhere. I want it to move with other tags when scrolling, which is the opposite of 'fixed'.