Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to set border length in css without div

div {
  width   : 200px;
  height  : 50px;   
  position: relative;
  z-index : 1;
  background: #eee;
}

div:before {
  content : "";
  position: absolute;
  left    : 0;
  bottom  : 0;
  height  : 1px;
  width   : 50%;  /* or 100px */
  border-bottom:1px solid magenta;
}
Comment

css border without changing size

outline: 1px solid black;
Comment

PREVIOUS NEXT
Code Example
Css :: css file path 
Css :: media query css 
Css :: all text in caps using css 
Css :: css animations 
Css :: color code for maroon 
Css :: color tr first row css 
Css :: dropdown size based on text 
Css :: media queries and or conditions 
Css :: checkbox checked color change css 
Css :: change parent div css on over of child 
Css :: import scss 
Css :: css crop image 
Css :: installation tailwind css in html 
Css :: *{ margin: 0; padding: 0; box-sizing: border-box; } 
Css :: scss color loop 
Css :: css height property 
Css :: css clearfix for floats with display table and clear both 
Css :: tailwind icon animation 
Css :: make css variable negative 
Css :: :global css 
Css :: woolentor product archive not centered 
Css :: circle as a pseudo element 
Css :: como hacer que me queden los nombres dentro de un formulario css 
Css :: display inline 
Css :: CSS Height, Width and Max-width 
Css :: How to add a pure css loading spinner 
Css :: enable xdebug ddev 
Css :: space-x css 
Css :: css !important 
Css :: interfaces in golang 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =