I was wondering, is there an documentation on how to use CSS cause it is seriously not logical.
Im truing to use images, and the outcome is unexpected. For instance to have a image stretched in the bottom panel it should be done like this:
- Code: Select all
background-image: url("panel-bg.png");
background-reopeat: repeat-x;
but this wont work...
and this will
- Code: Select all
border-image:url("panel-bg.png");
button (not working)
- Code: Select all
background-image: url("button-hover.png");
background-reopeat: repeat-x;
border-image: url("button-hover-border.png") 2 stretch stretch;
button working, sort of
- Code: Select all
border-image: url("button-hover.png") ;








