user1880779
user1880779

Reputation: 2078

HTML CSS h3 iframe positioning

I have an h3 tag, a paragraph and the facebook iframe Like button.

 <h3>Spread out the word</h3>

<iframe src="//www.facebook.com/plugins/like.php?;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:90px; height:21px;" allowTransparency="true"></iframe>

<p class="txtlike">Like us on Facebook</p>

How would I be able to set the CSS so the like button is next to h3 tag (in the same row) and has full width possible so the button can expand (some different languages extend the button). The only way I have found that it works is to just put the iframe inside h3 and I know that is wrong.

Upvotes: 0

Views: 356

Answers (2)

عثمان غني
عثمان غني

Reputation: 2708

Use following in your css. Hope it helps

h3
{
    width:25%;  
    float:left; 
}
iframe 
{
  width:75%;
}

change width accordingly.

Upvotes: 0

Chris Barr
Chris Barr

Reputation: 34125

This might help:

h3{
  display: inline-block;
  /*or...*/
  display: inline;
}

Upvotes: 1

Related Questions