Very basic HTML/CSS question- having a link line up with the rest of the sentence - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T19:41:02Z http://stackoverflow.com/feeds/question/1080845 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence 0 Very basic HTML/CSS question- having a link line up with the rest of the sentence Olegious 2009-07-03T21:12:49Z 2009-07-04T11:59:39Z <p>So I want to have this: </p> <p>In association with Company Name</p> <p>What I'm getting right now is this: </p> <p>In association with Company Name</p> <p>The company name is a link, but I have my links be red with no underlining by setting them to a class in CSS. </p> <p>This is the html I have: </p> <pre><code>&lt;a&gt;In association with &lt;div id="bodylinks" class="bodylink"&gt;&lt;a href="url.com"&gt;Company Name&lt;/a&gt;&lt;/a&gt;&lt;/div&gt; </code></pre> <p>Here is the CSS associated with bodylink</p> <pre><code>.bodylink a { font: 14px Helvetica; color: red; text-decoration:none; } </code></pre> <p>So the company name gets thrown to the next line because it is a different div, how can I avoid this and still use the .bodylink a class to format the link?</p> <p>Thank you</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080886#1080886 2 Answer by allyourcode for Very basic HTML/CSS question- having a link line up with the rest of the sentence allyourcode 2009-07-03T21:22:48Z 2009-07-03T21:22:48Z <p>div's are used to create new sections (divisions) in your page. If you don't intend the link to be in a new section, you should remove it and give the tag the class attribute like this:</p> <pre><code>&lt;a class="bodylink" href="www.example.com"&gt;link text&lt;/a&gt; </code></pre> <p>You'll also need to change your CSS so it applies to tags with class bodylink like this:</p> <pre><code>a.bodylink { /* styling */ } </code></pre> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080889#1080889 0 Answer by Peter for Very basic HTML/CSS question- having a link line up with the rest of the sentence Peter 2009-07-03T21:23:46Z 2009-07-03T21:23:46Z <p>Try using a span instead, or give the anchor (&lt;a&gt;) itself the class.</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080891#1080891 0 Answer by RegDwight for Very basic HTML/CSS question- having a link line up with the rest of the sentence RegDwight 2009-07-03T21:24:10Z 2009-07-03T21:24:10Z <p>Use <code>&lt;span&gt;</code> instead, an inline element that doesn't break the text flow. <code>&lt;div&gt;</code> is a block element that creates a "line break" so to speak.</p> <p>Also, you've got the nesting of your elements all wrong. That's not valid HTML.</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1080924#1080924 1 Answer by steve_c for Very basic HTML/CSS question- having a link line up with the rest of the sentence steve_c 2009-07-03T21:36:31Z 2009-07-03T21:36:31Z <p>No one bothered to mention that his markup is syntactically incorrect. You can't have the opening anchor tag outside the div, and the closing anchor tag inside.</p> <p>The div tag is a block level element. You need an inline element, such as a span tag, as others here have suggested.</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1082063#1082063 1 Answer by Ryan for Very basic HTML/CSS question- having a link line up with the rest of the sentence Ryan 2009-07-04T11:53:57Z 2009-07-04T11:53:57Z <pre><code>&lt;div class="bodylink"&gt;In association with &lt;a href="url.com"&gt;Company Name&lt;/a&gt;&lt;/div&gt; </code></pre> <p>Why do you ahve the whole line anchored? If you use the code above the line in in a div with the class formatting and the Company Name is linked.</p> <p>Ryan</p> http://stackoverflow.com/questions/1080845/very-basic-html-css-question-having-a-link-line-up-with-the-rest-of-the-sentence/1082069#1082069 0 Answer by JohnZ for Very basic HTML/CSS question- having a link line up with the rest of the sentence JohnZ 2009-07-04T11:59:39Z 2009-07-04T11:59:39Z <p>First of all the HTML code should be corrected, as steve_c said.</p> <p>And to make a div appear inline with other content use the <code>display: inline;</code> CSS code on the div you want to appear inline.</p> <p>Example:</p> <pre><code>the text before div &lt;div style="display: inline;"&gt;&lt;a href="#"&gt;the link in the text&lt;/a&gt;&lt;/div&gt; </code></pre>