Skip to content

Commit eb514e2

Browse files
committed
some string
1 parent 65c8945 commit eb514e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A “rule declaration” is the name given to a selector (or a group of selector
3737
}
3838
```
3939

40-
### Selectors
40+
### Seçiciler
4141

4242
In a rule declaration, “selectors” are the bits that determine which elements in the DOM tree will be styled by the defined properties. Selectors can match HTML elements, as well as an element's class, ID, or any of its attributes. Here are some examples of selectors:
4343

@@ -51,7 +51,7 @@ In a rule declaration, “selectors” are the bits that determine which element
5151
}
5252
```
5353

54-
### Properties
54+
### Özellikler
5555

5656
Finally, properties are what give the selected elements of a rule declaration their style. Properties are key-value pairs, and a rule declaration can contain one or more property declarations. Property declarations look like this:
5757

@@ -64,7 +64,7 @@ Finally, properties are what give the selected elements of a rule declaration th
6464

6565
## CSS
6666

67-
### Formatting
67+
### Düzenleme
6868

6969
* Use soft tabs (2 spaces) for indentation
7070
* Prefer dashes over camelCasing in class names.
@@ -105,15 +105,15 @@ Finally, properties are what give the selected elements of a rule declaration th
105105
}
106106
```
107107

108-
### Comments
108+
### Yorumlar
109109

110110
* Prefer line comments (`//` in Sass-land) to block comments.
111111
* Prefer comments on their own line. Avoid end-of-line comments.
112112
* Write detailed comments for code that isn't self-documenting:
113113
- Uses of z-index
114114
- Compatibility or browser-specific hacks
115115

116-
### OOCSS and BEM
116+
### OOCSS ve BEM
117117

118118
We encourage some combination of OOCSS and BEM for these reasons:
119119

@@ -165,7 +165,7 @@ function ListingCard() {
165165
* `.ListingCard__title` is an “element” and represents a descendant of `.ListingCard` that helps compose the block as a whole.
166166
* `.ListingCard--featured` is a “modifier” and represents a different state or variation on the `.ListingCard` block.
167167

168-
### ID selectors
168+
### ID Seçiciler
169169

170170
While it is possible to select elements by ID in CSS, it should generally be considered an anti-pattern. ID selectors introduce an unnecessarily high level of [specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) to your rule declarations, and they are not reusable.
171171

@@ -288,7 +288,7 @@ Again: **never nest ID selectors!**
288288
289289
If you must use an ID selector in the first place (and you should really try not to), they should never be nested. If you find yourself doing this, you need to revisit your markup, or figure out why such strong specificity is needed. If you are writing well formed HTML and CSS, you should **never** need to do this.
290290
291-
## Translation
291+
## Çeviriler
292292
293293
This style guide is also available in other languages:
294294

0 commit comments

Comments
 (0)