フォームの左側に小さな openid ロゴを表示するためにこの css を作成しましたが、フォームが右の角度のある外観ではなく、デフォルトの外観を保持するようにしたいと考えています。
<html>
<head>
<style type="text/css">
.openid-input {
background: url("http://id.gesellix.de/logo/openid_small_logo_white.gif") no-repeat scroll left center transparent;
height: 22px;
line-height: 22px;
padding-left: 18px;
}
</style>
</head>
<body>
<input type="text" tabindex="100" class="openid-input">
</body>
</html>