私はCodeigniterのCaptchaヘルパーを使用しています。captcha画像はインラインで表示できません
イメージをフォームにエコーすると、次の要素が常に新しい行にプッシュされます。
入力フィールドをキャプチャ画像とインラインで表示するにはどうすればよいですか?
.captcha img
{
display:inline;
float:left;
}
</style>
<tr>
<td height="35" align="right">กรอกรหัสภาพ</td>
<td valign="bottom"></td>
<td valign="bottom">
<div class="captcha"><?php echo $captcha['image']; //this is img tag so you can style it through img ?>
<input name="userCaptcha" type="text" value="<?php if(!empty($userCaptcha)){ echo $userCaptcha;} ?>" style="width:80px;float:left;" />
</div>
</td>
</tr>
申し訳ありませんでした – tuchawat