- XML files should be encoded in utf-8 as much as possible. Some characters in gb2312 cannot be stored, such as ?. Even if they can be stored, they need to be converted, which is troublesome. UTF-8 also complies with international standards.
- In CSS, the :hover pseudo-class will become invalid if placed before :visited
- If the <a> tag does not have an href attribute, all CSS pseudo-classes such as :hover will be invalid.
- In js files, use document.write("<script language='javascript' src='" + file + "'></" + "script>" as the reference format, and the file relative path is the path of the HTML that references the js.
For example: a.htm references x\b.js, b.js references x\c.js, then file should be x\c.js instead of the direct path c.js relative to b.js. However, this problem does not exist in @import and url() references in CSS.
- Sometimes, when the width of the talbe is set to 100%, there will be a blank space on the right side of the scroll bar. Please set <body style="overflow:auto">
- For commonly used images, do not use the img tag. Use <span><a> and use CSS to specify its background, width and height. For dynamic images (changing the background when moving up), it is best to use <a>. No additional code is required. Just use the pseudo-class :hover. The advantage of using CSS is that all changes can be made at once, which can be well used in skin-changing applications.
- @font-face {
font-family:comic; src:url(http://valid_url/some_font_file.eot); } Define a font name that is not available locally and call <span style="font-family:comic;font-size:18pt>aa</span> - Some CSS
div { overflow: hidden; text-overflow: ellipsis; } td { vertical-align : middle; } To force overflow to occur and the ellipsis value to be applied, the author must set the object's white-space property to nowrap . If there is no opportunity for line wrapping (for example, the width of the object container is narrow, and there is a long text without reasonable line breaks), overflow is possible even without applying nowrap . In order for the ellipsis value to be applied, this property must be set to an object that has an invisible area. The best option is to set the overflow property to hidden. - Firefox's document.createElement does not support HTML tags in the content, nor does it support innerText, but it supports innerHTML, and you can use innerHTML to specify its content.
- The width of the DropDownList in the .net control is not colored in Firefox, you need to directly define style='width:10px;'
- The CSS cursor in Firefox does not support hand, use pointer instead
- The scroll bar in the iframe needs to be set in the iframe tag with style='overflow:hidden', not just in the body, which will cause problems in Firefox
- In the onpropertychange event, pay attention to using event.propertyName to filter the property change event. When setting this event, the onpropertychange property has actually been changed, so it will be automatically executed once
- The XSL support version in js5.6 is low, such as the document function is not supported
- The slice function is slower than looping directly to get array slices
- When nextSibling obtains the next object, it is important to note that there should be no space between the two nodes, otherwise it is easy to fail to obtain the correct object.
- When using CreateTextFile, the third parameter must be set to true if there is Chinese text in it. Otherwise, Chinese text cannot be written, which results in an error when writing.
- Use ADODB.stream when saving Chinese text, do not use fso, because FSO does not support utf-8 format
|