簡単なページを作成してBlackBerryデバイスで試してみましたが、ハイライトが機能しません。誰かがここで私のコードの何が問題になっているのかを教えてくれますか?
<!DOCTYPE HTML>
<html>
<head>
<title>Test Page</title>
<style>
.list {
width: 100%;
display: block;
text-decoration: none;
border-style: solid;
border-color: #CCC;
border-width: 1px;
margin-top: 5px;
padding: 2px;
}
.list:hover {
background-color: green;
color: white;
}
</style>
</head>
<body>
<div class="list" x-blackberry-initialFocus="true" x-blackberry-focusable="true">List 1</div>
<div class="list" x-blackberry-focusable="true">List 2</div>
<div class="list" x-blackberry-focusable="true">List 3</div>
<div class="list" x-blackberry-focusable="true">List 4</div>
<div class="list" x-blackberry-focusable="true">List 5</div>
<div class="list" x-blackberry-focusable="true">List 6</div>
</body>
</html>
ありがとうございました。