You could use negative margins to achieve this.
.wrapper {
width:300px;
margin:0 auto;
}
.break {
width: 600px;
margin-left:-150px;
}
The only problem is that you would need to specify the width of both elements.
EDIT: voodoo417's solution would be better...