I need some help understanding this bit of code
pre
{
white-space: pre;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
white-space: pre-wrap;
word-wrap: break-word;
width: 800px;
overflow: auto;
}
What's with all the different keywords following 'white-space:' ?
What does white-space: -o-pre-wrap; do?