Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to bring a text in middle center of a tile css in anchor tag inline elements

a,button {
  display: inline-block;
  -moz-box-sizing: border-box;
  width: 150px;
  height: 150px;
  vertical-align: middle;
  border: 1px solid #000;
  text-align: center;
}
Comment

how to bring a text in middle center of a tile css in anchor tag inline elements

a,button {
    width: 150px;
    height: 150px;
    border: 1px solid #000;
    text-align: center;
}

a {
    display: table;
    -moz-box-sizing: border-box;
}

a span, button span {
    vertical-align: middle;
    text-align: center;
}

a span {
    display: table-cell; 
}
Comment

PREVIOUS NEXT
Code Example
Css :: vertical multi color border css 
Css :: how to use css without brackets 
Css :: css marker effect 
Css :: target id in media query 
Css :: Add animated GIF when hovering an image 
Css :: ecto generator create new mvc 
Css :: if i forked and cloned a github repo can i change the name 
Css :: como tirar o x do search input 
Css :: what is focus state in css 
Css :: css change browser color 
Css :: cant change button higeht in @media 
Css :: css alfred 
Css :: blur on scroll css 
Css :: wow animation run in multiple times at once 
Css :: font-family: robort; 
Css :: revert workflow version servicenow 
Css :: à quoi sert clearfix 
Css :: nav items moving when hover 
Css :: responsive arrow breadcrumbs css site:stackoverflow.com 
Css :: empty rulesets css 
Css :: aplicar padding a sombra 
Css :: tailwind css checked 
Css :: how to remove table border in css for last child if rowspan 
Css :: how to use class form scss reactjs 
Css :: css lobotomized owl 
Css :: wrapped header aura datatable 
Css :: storing and receiving FB 
Css :: grid-templete-rows: masonary 
Css :: button two lines on ipad 
Css :: How to make background fixed while scrolling 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =