What I want is to detect whether the user is using chrome, and then change the margin-bottom of that class, to something different?
This is the div:
<div id="titleAreaBox" class="ms-noList ms-table">
And this ic the class I am using:
#titleAreaBox{
    margin-left:0px;
    height:0px; 
    margin-bottom:-31px;    
}
So I want to be able to change the margin-bottom:-31px element of this class, if the browser is chrome....is this possible in javascript?
 
     
    