Search
 
SCRIPT & CODE EXAMPLE
 

CSS

CSS Outline Style

p.dotted {outline-style: dotted;}
p.dashed {outline-style: dashed;}
p.solid {outline-style: solid;}
p.double {outline-style: double;}
p.groove {outline-style: groove;}
p.ridge {outline-style: ridge;}
p.inset {outline-style: inset;}
p.outset {outline-style: outset;}


//dotted - Defines a dotted outline
//dashed - Defines a dashed outline
//solid - Defines a solid outline
//double - Defines a double outline
//groove - Defines a 3D grooved outline
//ridge - Defines a 3D ridged outline
//inset - Defines a 3D inset outline
//outset - Defines a 3D outset outline
//none - Defines no outline
//hidden - Defines a hidden outline
Comment

css outline

<!DOCTYPE html>
<html>
<head>
<style>
p {outline-color:red;}

p.dotted {outline-style: dotted;}
p.dashed {outline-style: dashed;}
p.solid {outline-style: solid;}
p.double {outline-style: double;}
p.groove {outline-style: groove;}
p.ridge {outline-style: ridge;}
p.inset {outline-style: inset;}
p.outset {outline-style: outset;}
</style>
</head>
<body>

<h2>The outline-style Property</h2>

<p class="dotted">A dotted outline</p>
<p class="dashed">A dashed outline</p>
<p class="solid">A solid outline</p>
<p class="double">A double outline</p>
<p class="groove">A groove outline. The effect depends on the outline-color value.</p>
<p class="ridge">A ridge outline. The effect depends on the outline-color value.</p>
<p class="inset">An inset outline. The effect depends on the outline-color value.</p>
<p class="outset">An outset outline. The effect depends on the outline-color value.</p>

</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Css :: jquery css unset(remove) certain style 
Css :: grid css fr width of content 
Css :: background color in hex css 
Css :: make clicks pass through element css html 
Css :: Text that shows an underline on hover 
Css :: how to fix overflow elementor 
Css :: hide image title on hover css 
Css :: how to style ul circles black in css 
Css :: css flex add second row 
Css :: width in % of a screen css 
Css :: animation css 
Css :: :not(:hover) 
Css :: css table flex 
Css :: css select parent 
Css :: css image gallery 
Css :: box sizing border box 
Css :: css crop image 
Css :: max width for tablet 
Css :: what to use instead of overflow overlay 
Css :: css italics 
Css :: position absolute and relative css 
Css :: how to divide flex space equally 
Css :: html and css websites 
Css :: css grid 
Css :: inline block and 50% width not aligning items 
Css :: how to set initial state after first time in formik 
Css :: advance selectors in css 
Css :: webpack validationerror: invalid options object. mini css extract plugin loader has been initialized using an options object that does not match the api schema. 
Css :: rem css 
Css :: how to use tailwind css in react js 
ADD CONTENT
Topic
Content
Source link
Name
9+1 =