Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this snippet: view here edit here

How can I make the "x" stay in the middle of the circle on all supporting browsers (at least firefox3+ and chrome)

Snippet:

<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>Backbone: Tody</title>

  <style>
    .delete {
      -moz-border-radius: .75em;
      -webkit-border-radius: .75em;
      width: 1.4em;
      height: 1.4em;
      text-align: center;
      display: inline-block;
      line-height: 1.4em;
      display:inline-block
      vertical-align:middle
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      color: white;
      background-color: gray;
      cursor: pointer;
    }
    .delete:before {
      content: "\2715";
      /* content: "\00D7"; */
    }
    .delete:hover {
      background-color: red;
    }
  </style>

</head>
<body>

<div class="delete"></div>

</body>
</html>
share|improve this question
isn't it already in the middle? – 動靜能量 Nov 14 '10 at 19:40
that version is ok on FF but not on chrome, there must be something that works on both – clyfe Nov 14 '10 at 19:50

2 Answers

If you want it to be pixel-perfect across browsers, your best bet is probably to use an image -- positioning the x will depend on default font sizes in different browsers.

That said, I'd say it's close enough in FF4b and Chrome 7 on OS X...

share|improve this answer
this is mostly an experiment – clyfe Nov 14 '10 at 19:50
up vote 0 down vote accepted

I got this working by setting a margin like this and making the inner space (box + padding) the same size as the font. http://jsbin.com/unera3/5/edit

<!DOCTYPE HTML>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <title>Backbone: Tody</title>

  <style>
    .delete {
      -moz-border-radius: .75em;
      -webkit-border-radius: .75em;
      width: 1.4em;
      height: 1.4em;
      text-align: center;
      line-height: 1.4em;
      vertical-align:middle
      font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
      font-size: 14px;
      font-weight: bold;
      color: white;
      background-color: gray;
      cursor: pointer;
    }
    .delete:before {
      content: "\2715";
      /* content: "\00D7"; */
    }
    .delete:hover {
      background-color: red;
    }
  </style>

</head>
<body>

<div class="delete"></div>

</body>
</html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.