zig.com Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<div id="myDiv">This is a div element.</div>
<br>
<select onchange="myFunction(this);" size="10">
  <option>none</option>
  <option>hidden</option>
  <option>dotted</option>
  <option>dashed</option>
  <option>solid</option>
  <option>double</option>
  <option>groove</option>
  <option>ridge</option>
  <option>inset</option>
  <option>outset</option>
</select>
<script>
  function myFunction(selectTag) {
    var listValue = selectTag.options[selectTag.selectedIndex].text;
    document.getElementById("myDiv").style.borderLeftStyle = listValue;
  }
</script>
</body>
<!-- /jsref/tryit.asp?filename=tryjsref_style_borderleftstyle_all Thu, 06 Feb 2025 18:36:37 GMT -->
</html>