我的输出格式日期为14th May 2015
。
但是14
th
中我想要的输出应该使用C#提高一点。
StrBuilder.AppendFormat(@"<tr><td>Delivery Date & Time</td><td align='left' style='text-align:left;'>- {0}</td></tr>", (string.IsNullOrEmpty(txtDeliveryDate.Text) ? "" : (string.IsNullOrEmpty(txtETime.Text) ? Common.ConvertValidDateFormat(txtDeliveryDate.Text).ToString("dd MMM yyyy") : Common.ConvertValidDateFormat(txtDeliveryDate.Text).ToString("dd MMM yyyy") + " at " + txtETime.Text)));
答案 0 :(得分:0)
<sup>
标签正是您所需要的。
如果您不想这样做。你可以使用css
position: relative;
top: -0.5em;
font-size: 80%;
演示http://jsfiddle.net/j8au1pk3/
另请查看this question