border: thin solid #00FF00;
outline: thick solid #FF0000;
<script type="text/javascript">
function changeOutlineWidth()
document.getElementById("p1").style.outlineWidth="thin";
<input type="button" onclick="changeOutlineWidth()" value="Change outline width" />
<p id="p1">This is a paragraph</p>