CSS
<style>
#layer1 {
height: 60px;
background-color:#00FF00;
}
#layer2 {
height: 60px;
background-color:#FFFFCC;
}
</style>
HTML
<div id="layer1">
This is the first div.
</div>
<div id="layer2">
This is the second div.
</div>
Question
If I only modify the CSS code without changing the HTML structure, can I transfer content between the two divs? My goal is to move the text "This is the first div." to layer2, so that it appears on the left side of layer2, and have the text "This is the second div." displayed at the right side of layer2.