Class | Sass::Selector::Attribute |
In: |
lib/sass/selector.rb
|
Parent: | Simple |
An attribute selector (e.g. `[href^="http://"]`).
flags | [R] |
Flags for the attribute selector (e.g. `i`).
@return [String] |
name | [R] |
The attribute name.
@return [Array<String, Sass::Script::Tree::Node>] |
namespace | [R] |
The attribute namespace. `nil` means the default namespace, `""`
means no namespace, `"*"` means any namespace.
@return [String, nil] |
operator | [R] |
The matching operator, e.g. `"="` or `"^="`.
@return [String] |
value | [R] |
The right-hand side of the operator.
@return [String] |