Form または Input タグを使用して HTML で境界線を非表示にする方法を知っている人はいますか?
以下のように私のコード:
<form name="timerform">
Your session will expired in
<input type="text" name="clock" size="7" value="5:00">
</form>
CSS でスタイルを設定します。CSS は、Web ページの HEAD セクションにインラインで適用できます...
<head>
<style type="text/css">
input { border: none }
/* other style definitions go here */
</style>
</head>
<body>
<!-- your HTML code below... -->
またはあなたの場合、最も簡単かもしれません:
<form name="timerform">
Your session will expired in
<input type="text" name="clock" size="7" value="5:00" style="border:none" />
</form>
このページでどの程度やりたいかによって異なります。さらに読む: http://www.w3schools.com/css/css_howto.asp