在html表< td>中粗体显示一行
问题描述:
我已经使用下面的代码来创建一个表,但在标签中,我只需要XYZ是粗体,所有其他的是unbold。但是当我使用这个代码,整个是大胆的。我不想使用css样式表与这个文件。有人请告诉我如何实现这一点。
I have used the following code to make a table but in the tag i only need the XYZ to be bold and all others to be unbold. But when I used this code the whole is going bold. I don't wish to use a css style sheet with this file. Someone please tell me how I can achieve this.
<table width=100%>
<tr>
<td><center><b>XYZ<b><br>Aabc<br>+91-xxxxxxxxx<br>xyz@htjkl.com<center></td>
</tr>
</table>
提前感谢。
答
- 您应该使用样式表。
- 有一个简单的拼写错误: c $ c>< b> 。
- You should use a style sheet.
- There is a simple typo: The / is missing in the second occurrence of
<b>
.