Edit in JSFiddle

<div class="secondDiv">Hello, I am div.</div>
<input type="button" value="Press Me" id="pressToAdd">
$("#pressToAdd").click(function () {
 $(".secondDiv").css({"background-color":"#755779","width":"200","margin-bottom":"20px"});
});