position

本文详细解析了CSS中的五种定位方式:absolute、fixed、relative、sticky和static,包括它们的特性和如何使用lefttopright及bottom属性进行定位。特别介绍了sticky定位的特性,以及在不同浏览器中的兼容性情况。
摘要由CSDN通过智能技术生成

absolute:

生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。

元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。

 

fixed:

生成固定定位的元素,相对于浏览器窗口进行定位。

元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。

 

relative:

生成相对定位的元素,相对于其正常位置进行定位。

因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。

 

sticky:

粘性定位,该定位基于用户滚动的位置。

它的行为就像 position:relative; 而当页面滚动超出目标区域时,它的表现就像 position:fixed;,它会固定在目标位置。

注意: Internet Explorer, Edge 15 及更早 IE 版本不支持 sticky 定位。 Safari 需要使用 -webkit- prefix (查看以下实例)。

转载于:https://www.cnblogs.com/lllusory/p/11565388.html

### MySQL Position Function Usage and Examples In SQL, particularly within the context of MySQL, determining positions or working with string functions can be essential for various database operations. The `POSITION` function is used to find the first occurrence of a substring within a given string. This functionality does not directly relate to log analysis configurations such as those described in configuring log analyzers[^1], but it serves an important role in data manipulation. The syntax for using the `POSITION` function in MySQL follows this pattern: ```sql SELECT POSITION(substring IN string); ``` For example, if one wishes to locate where a specific word appears inside another text field, consider the following query which finds the position of 'world' within 'hello world': ```sql SELECT POSITION('world' IN 'hello world'); ``` This would return `7`, indicating that "world" starts at the seventh character from the beginning of the provided string. Another common use case involves searching through columns containing longer texts. Suppose there exists a table named `articles` with a column called `content`. To identify records wherein certain keywords appear after a particular point (e.g., only articles mentioning 'MySQL' past their tenth character), queries like these could prove useful: ```sql SELECT * FROM articles WHERE POSITION('MySQL' IN content) > 10; ``` Additionally, while `POSITION()` works well enough for simple searches, more complex requirements might necessitate employing other string handling capabilities offered by MySQL including regular expressions via REGEXP/RLIKE operators or leveraging additional built-in functions like LOCATE(), SUBSTRING_INDEX() etc.[^2] --related questions-- 1. How do you perform advanced search patterns on strings stored in MySQL databases? 2. What are some alternative methods besides POSITION() for locating substrings within larger strings in MySQL? 3. Can you provide examples demonstrating how to combine multiple string functions together effectively when querying MySQL tables? 4. In what scenarios should developers prefer using regex over standard string matching techniques available in MySQL?
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值