html - Table border OnlyOutsideEdges -
following code okey.
<style> table { border-bottom: 2px solid black; border-top: 2px solid black; border-left: 2px solid black; border-right: 2px solid black; } </style> </head> how shorten above code like;
<head> <style> table {border-onlyoutsideedges: 2px solid black;} </style> </head>
see fiddle
you combine styles, , make shorter below.
<head> <style> table {border: 2px solid black;} </style> </head> please read more border in docs
Comments
Post a Comment