开发者

is it possible to center a span in a div while positioning an anchor in the same div?

开发者 https://www.devze.com 2023-01-04 06:59 出处:网络
With markup like this: <div id=\'titlebar\'> <a><img src=\'foo.png\'></a> <span>Title</span>

With markup like this:

<div id='titlebar'>
  <a><img src='foo.png'></a>
  <span>Title</span>
<开发者_JAVA百科;/div>

is it possible to center "Title" while positioning the anchored image?

   ... [foo] .....................Title ...............................

Thanks


#titlebar {
  text-align: center;
}

#titlebar a {
  position: relative;
  left: -40em;
}

Try that.

The title text will be slightly off center due to the original positioning of the image in the anchor, so you can apply a relative position to that as well.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号