我想在调整窗口大小时将红色边框 div 放在绿色边框的左侧。
目前 div 有以下 css 规则:
#twitter-2 {
width: 332px;
background-color: #7E7D7D;
opacity: 0.6;
margin-left:525px;
margin-top:-142px;
}
我解决了这个问题:
window.onresize = function(event) {
var elem = document.getElementById("twitter-2");
elem.setAttribute("style","margin: 20px 1px;");
}