html - Why are there spaces in my paragraph when using <a href> tag? -


i have been troubling way how put single text in paragraph tag. everytime add anchor tag keeps entering want @ side of text not below. please me.

this image

and code

ccs:

<style>  div.box {  	width: 168px;  	height: 300px;  	margin: 10px;  	float:left;  	background-color:#333;  }  table.shop {  	height: 450px;  	overflow-y:scroll;  	display: block;  }  ul.aa {  	list-style-type: none;      margin: 0;      padding: 0;  }  li {  	float:left;  }  {  	display:block;  	width: 200px;  }  a.head:link {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.head:visited {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.head:hover {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.head:active {text-decoration:underline; font-family:"century gothic"; font-size:18px; color:#fff;}    a.foot:link {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.foot:visited {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.foot:hover {text-decoration:none; font-family:"century gothic"; font-size:18px; color:#fff;}  a.foot:active {text-decoration:underline; font-family:"century gothic"; font-size:18px; color:#fff;}  </style>

and html:

  <!--================================================-->      <!--========this start of body====-->      <!--================================================-->    <tr>      <td height="450" background="background.jpg" valign="top">      <br />      <br />      <center><img src="thanks.png" alt="thankyou" /></center>      <table align="center" width="700">      	<tr>          	<td>      <font face="century gothic" color="#ffffff" size="+1"><p align="center">you receive response shortly regarding order. e-mail contain price , other details concering order. if details appears wrong please reply e-mail. once again, thank much! <a class="one" href="index.php">click here</a> return home page.</p></font>      		</td>           </tr>      </table>      </td>    </tr>      <!--================================================-->      <!--========this end of body========-->      <!--================================================-->

could please me solve problem?

if understand question correctly, want put link inline rest of message.

right now, link being pushed down because of css:

a {    display:block;    width: 200px; } 

instead, want inline rest of text, can do

a {    display: inline-block; } 

that should fix problem!


Comments

Popular posts from this blog

php - Invalid Cofiguration - yii\base\InvalidConfigException - Yii2 -

How to show in django cms breadcrumbs full path? -

ruby on rails - npm error: tunneling socket could not be established, cause=connect ETIMEDOUT -