CSS column-rule property sets the width, style, and color of the line drawn between columns in a multi-column layout. It is a shorthand property of the following CSS properties
<!DOCTYPE html>
<htmllang="en-US">
<head>
<style>
div{
border: 1pxsolid#267326;
padding: 10px;
margin-bottom: 25px;
column-count: 2;
-webkit-column-count: 2; /* Chrome, Safari, Opera */-moz-column-count: 2; /* Firefox */-webkit-column-gap: 40px;
-moz-column-gap: 40px;
column-gap: 40px;
column-rule: 4pxdouble#ff00ff;
-webkit-column-rule: 4pxdouble#ff00ff; /* Chrome, Safari, Opera */-moz-column-rule: 4pxdouble#ff00ff; /* Firefox */
}
</style>
</head>
<body>
<h1>CSS column-rule Property</h1>
<div>
Joanne Rowling was born on 31st July 1965 at Yate General Hospital near Bristol, and grew up in Gloucestershire in England and in Chepstow, Gwent, in south-east Wales.
</div>
</body>
</html>