I want to set the border property of an element on the right, bottom and left only without the top, so I am doing it in three lines like this:
document.getElementById("frmCreateUsernameAcknowledgement_flxSegmentDropdownContainer")
.style.borderRight="solid 1px #D8D8D8";
document.getElementById("frmCreateUsernameAcknowledgement_flxSegmentDropdownContainer")
.style.borderBottom="solid 1px #D8D8D8";
document.getElementById("frmCreateUsernameAcknowledgement_flxSegmentDropdownContainer")
.style.borderLeft="solid 1px #D8D8D8";
It works, but I don't want to do this on three lines, so my question is there a way to set the border property on right, bottom and left in one line?