Đây là nội dung file css tải về khi truy cập qua IP. Nó going hệt file css trên web server:
body {
}
.button {
padding: 2px 6px; border-radius: 3px; border: 1px solid rgb(16, 144, 176); border-image: none; color: rgb(255, 255, 255); font-family: Tahoma, Geneva, sans-serif; font-size: 11px; font-weight: bold; cursor: pointer; min-height: 25px; min-width: 60px; box-shadow: 0px 0px 2px 2px #ccc; text-shadow: 0px 1px 0px #063a46; background-color: rgb(0, 153, 204);
}
.button:hover {
color: rgb(255, 255, 255);
}
.textbox {
padding: 2px; border-radius: 4px; border: 1px solid rgb(204, 204, 204); transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; border-image: none; color: rgb(85, 85, 85); line-height: 18px; display: inline-block; box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075); background-image: none; background-color: rgb(255, 255, 255); -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
Còn đây là file css khi truy cập qua hostname. Nhiều đoạn đã bị thay đổi so với file css gốc. Đây có lẽ là nguyên nhân làm web hiển thị không đúng. Nhiều đoạn trong file css đã biến thành viết hoa. Nhưng nguyên nhân file css bị tải sai nội dung là gì thì mình chưa rõ:
BODY {
}
.button {
CURSOR: pointer; FONT-SIZE: 11px; BORDER-TOP: #1090b0 1px solid; FONT-FAMILY: Tahoma, Geneva, sans-serif; BORDER-RIGHT: #1090b0 1px solid; MIN-WIDTH: 60px; BORDER-BOTTOM: #1090b0 1px solid; FONT-WEIGHT: bold; COLOR: #fff; PADDING-BOTTOM: 2px; PADDING-TOP: 2px; PADDING-LEFT: 6px; MIN-HEIGHT: 25px; BORDER-LEFT: #1090b0 1px solid; PADDING-RIGHT: 6px; BACKGROUND-COLOR: #09c; border-radius: 3px; box-shadow: 0 0 2px 2px #CCC; text-shadow: 0 1px 0 #063A46
}
.button:hover {
COLOR: #ffffff
}
.textbox {
BORDER-TOP: #ccc 1px solid; BORDER-RIGHT: #ccc 1px solid; BACKGROUND-IMAGE: none; BORDER-BOTTOM: #ccc 1px solid; COLOR: #555; PADDING-BOTTOM: 2px; PADDING-TOP: 2px; PADDING-LEFT: 2px; BORDER-LEFT: #ccc 1px solid; DISPLAY: inline-block; LINE-HEIGHT: 18px; PADDING-RIGHT: 2px; BACKGROUND-COLOR: #fff; border-radius: 4px; box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075); -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s
}