Search
 
SCRIPT & CODE EXAMPLE
 

CSS

show arrow on hover css

.button-arrow {
  min-width: 130px;
  height: 40px;
  color: #800020;
  font-size: 20px;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  overflow: hidden;
  border-radius: 5px;
  border: none;
  background-color: #fbfdff;
  text-decoration: none;
}

.button-arrow:hover {
  border-radius: 5px;
  padding-right: 8px;
  padding-left: 24px;
}



.button-arrow:hover:after {
  opacity: 1;
  left: 10px;
}

// Arrow 

.button-arrow:after {
  content: "0AB";
  position: absolute;
  opacity: 0;
  font-size: 20px;
  line-height: 40px;
  top: 0;
  left: -20px;
  transition: 0.4s;
}
Comment

PREVIOUS NEXT
Code Example
Css :: css hover affect other item 
Css :: backgroud color css 
Css :: css text-decoration 
Css :: create circle in css 
Css :: css affect all child elements 
Css :: mb in bootstrap 
Css :: crop image with circle css 
Css :: iphne media query csss 
Css :: apply margin to all child elements 
Css :: overflow-y scroll css 
Css :: css clamp 
Css :: CSS Modules cannot be imported from within node_modules. 
Css :: button looks like a link 
Css :: in flex-wrap remove last item margin for every row 
Css :: textarea resize grabber style 
Css :: css resets 
Css :: how to make width equal to height css 
Css :: css em 
Css :: make element no styles 
Css :: how to apply css when not on hover 
Css :: font face html 
Css :: scrollheight 
Css :: tilt element css animation 
Css :: how to get text to auto break in a grid 
Css :: generate your tailwind.config.js file 
Css :: background images in css 
Css :: css grid first child 
Css :: css notes 
Css :: dot in image css 
Css :: how to make the position of a div always stay while scrolling 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =