在JAVASCRIPT中怎样才能使文本框三个边成为虚线只剩下一条实?谢谢大师

来源:百度知道 编辑:UC知道 时间:2024/09/22 13:35:49

<style>
input.line{border-top:1px #000 dashed;border-left:1px #000 dashed;border-right:1px #000 dashed;border-bottom:1px #000 solid;}
</style>

<body>
<input class="line"/>

<style>
input.line{border:1px #000 dashed; border-bottom:1px #000 solid;}
</style>
</head>

<body>
<input class="line"/>
</body>

把1楼给简化了...

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="htt