最近几年来,地理信息系统无论是在理论上还是应用上都处在一个飞速发展的阶段。 GIS被应用于多个领域的建模和决策支持,如城市管理、区划、环境整治等等,地理信息成为信息时代重要的组成部分之一; “数字地球”概念的提出,更进一步推动了作为其技术支撑的GIS的发展。 与此同时,一些学者致力于相关的理论研究,如空间感知、空间数据误差、空间关系的形式化等等。 这恰好说明了地理信息系统作为应用技术和学科的两个方面,并且这两个方面构成了相互促进的发展过程。
Sass nested CSS selectors are similar to HTML’s nesting rules.
As follows, we nest the style of a navigation bar: In the instance, the selectors for Convert the above code to CSS code, as follows: Many CSS attributes have the same prefix, for example: In Sass, we can write them using nested attributes: Convert the above code to CSS code, as follows: 13.4.1. Sass Code: ¶
nav { ul { margin: 0; padding: 0; list-style: none; } li { display: inline-block; } a { display: block; padding: 6px 12px; text-decoration: none; } }
ul , li , and a are all nested within the nav selectors. 13.4.2. Css Code: ¶
nav ul { margin: 0; padding: 0; list-style: none; } nav li { display: inline-block; } nav a { display: block; padding: 6px 12px; text-decoration: none; }
Sass nesting properties ¶
font-family , font-size and font-weight text-align , text-transform and text-overflow . 13.4.3.
Sass code: ¶ font: { family: Helvetica, sans-serif; size: 18px; weight: bold; } text: { align: center; transform: lowercase; overflow: hidden; }
13.4.4. Css Code: ¶
font-family: Helvetica, sans-serif; font-size: 18px; font-weight: bold; text-align: center; text-transform: lowercase; text-overflow: hidden;