Jump to content
php.lv forumi

teksts tabula ar bildi


sayed

Recommended Posts

Jautājums sekojoš ir tabula, tabulā ir bilde, bet kad aiz bildes sāk rakstīt tekstu, teksts sāk rakstīties no bildes apakšējā labā stūra. Kā dabūt lai teksts sāktu rakstīties no augšējā stūra?

Paldies!

<table width="400" border="1" align="center">
 <tr>
<td valign="top"><img src="../Blue hills.jpg" width="150" height="150" />Teksts, teksts </td>
 </tr>
</table>

Link to comment
Share on other sites

Tas ko man vajadzēja tika panāks šādi:

<style type="text/css">
.bilde img {
vertical-align: top;
float: left;
}
</style>

<table width="400" border="1" align="center">
 <tr>
<td class="bilde" valign="top"><img src="../Blue hills.jpg" width="150" height="150" />Teksts, teksts</td>
 </tr>
</table>

Link to comment
Share on other sites

  • 4 weeks later...

Sapratu mājienu :) tas ir lieks :)

Vienu lietu gan vēl nesapratu - kā dabūt lielāku atstarpi no bilde|teksts?

Uz IE itkā ir OK atstarpe, bet FF piestumj galīgi klāt :(

Edited by sayed
Link to comment
Share on other sites

  • 5 weeks later...
×
×
  • Create New...