Как создать сниппет в visual studio code
You can create a code snippet with only a few steps. All you need to do is create an XML file, fill in the appropriate elements, and add your code to it. You can optionally make use of replacement parameters and project references. Import the snippet to your Visual Studio installation by using the Import button in the Code Snippets Manager (Tools > Code Snippets Manager).
Snippet template
The following XML is the basic snippet template:
Create a code snippet
Create a new XML file in Visual Studio and add the template shown above.
Fill in the title of the snippet in the Title element. Use the title Square Root.
To see all the available language values, browse the Code element attributes section on the Code snippets schema reference page.
Add the snippet code in the CDATA section inside the Code element.
Or for Visual Basic:
You can't specify how lines of code in the CDATA section of a code snippet should be indented or formatted. Upon insertion, the language service formats the inserted code automatically.
Save the snippet as SquareRoot.snippet (you can save it anywhere).
Import a code snippet
You can import a snippet to your Visual Studio installation by using the Code Snippets Manager. Open it by choosing Tools > Code Snippets Manager.
Click the Import button.
Go to the location where you saved the code snippet in the previous procedure, select it, and click Open.
The Import Code Snippet dialog opens, asking you to choose where to add the snippet from the choices in the right pane. One of the choices should be My Code Snippets. Select it and click Finish, then OK.
The snippet is copied to one of the following locations, depending on the code language:
The snippet code is inserted in the code file.
Description and shortcut fields
Since you're editing the file in the directory where Visual Studio placed it, you don't need to reimport it to Visual Studio.
Add Author and Description elements to the Header element, and fill them in.
The Header element should look something like this:
Open the Code Snippets Manager and select your code snippet. In the right pane, notice that the Description and Author fields are now populated.
To add a shortcut, add a Shortcut element within the Header element:
Save the snippet file again.
The snippet code is inserted.
Replacement parameters
You may want parts of a code snippet to be replaced by the user. For example, you might want the user to replace a variable name with one in their current project. You can provide two types of replacements: literals and objects. Use the Literal element to identify a replacement for a piece of code that is entirely contained within the snippet but will likely be customized after it's inserted into the code (for example, a string or numeric value). Use the Object element to identify an item that's required by the code snippet but is likely to be defined outside of the snippet itself (for example, an object instance or a control).
To enable the user to easily replace the number to calculate the square root of, modify the Snippet element of the SquareRoot.snippet file as follows:
Notice that the literal replacement is given an ID ( Number ). That ID is referenced from within the code snippet by surrounding it with $ characters:
Save the snippet file.
Open a project and insert the snippet.
The code snippet is inserted and the editable literal is highlighted for replacement. Hover over the replacement parameter to see the tooltip for the value.
If there's more than one replaceable parameter in a snippet, you can press Tab to navigate from one to the other to change the values.
Import a namespace
The following XML shows a code snippet that uses the method File.Exists in the System.IO namespace and, therefore, defines the Imports element to import the System.IO namespace.
It's not debatable, most of us got used to utility classes from Tailwind, BootStrap etc,. But when you come back to write plain CSS, wouldn't be great to have those utility classes converted as snippets instead of typing the CSS rules?
Apart from CSS Utility snippets, collection of snippets from popular CSS examples found all over the web can be found.
To see the list of all the CSS Snippets, go here →
Want to have your own favourite CSS Snippets in this extension, see Contributing →
Installation
You can enable tab completion (recommended) by opening Code > Preferences > Settings (on a Mac) and applying "editor.tabCompletion": "onlySnippets" to your personal settings
Table of Contents
Snippets
Common
CSS Reset
Snippet | Purpose |
---|---|
css-reset | An opinionated set of base styles Cloned from Tailwind Preflight - Original File |
Pseudo Styles
Snippet | Purpose |
---|---|
hover | :hover |
focus | :focus |
active | :active |
disabled | :disabled |
visited | :visited |
first | :first-child |
last | :last-child |
even | :nth-child(2n) |
odd | :nth-child(odd) |
nth-child | :nth-child( rule ) |
Breakpoints
Snippet | Purpose |
---|---|
resp | Get all tailwind breakpoints - 640px - 768px - 1024px - 1280px |
resp-sm | Get tailwind breakpoint - sm - 640px |
resp-md | Get tailwind breakpoint - md - 768px |
resp-lg | Get tailwind breakpoint - lg - 1024px |
resp-xl | Get tailwind breakpoint - xl - 1280px |
resp-selected | Get all tailwind breakpoints for selected class/classes - 640px - 768px - 1024px - 1280px See how → |
resp-sm-selected | Get tailwind breakpoint for selected class/classes - sm - 640px See how → |
resp-md-selected | Get tailwind breakpoint for selected class/classes - md - 768px See how → |
resp-lg-selected | Get tailwind breakpoint for selected class/classes - lg - 1024px See how → |
resp-xl-selected | Get tailwind breakpoint for selected class/classes - xl - 1280px See how → |
Tailwind
Layout Snippets
FlexBox Snippets
Grid Snippets
Spacing Snippets
1 line layouts
Snippet | Purpose |
---|---|
super-centered | place-items: center; |
deconstructed-pancake | flex: 0 1 baseWidth >; |
sidebar-says | grid-template-columns: minmax( min , max ) . >; |
pancake-stack | grid-template-rows: auto 1fr auto; |
classic-holy-grail-layout | grid-template: auto 1fr auto / auto 1fr auto; |
12-span-grid | grid-template-columns: repeat(12, 1fr); |
ram | grid-template-columns: repeat(auto-fit, minmax( base , 1fr)); |
line-up | justify-content: space-between; |
clamping-my-style | clamp( min , actual , max ); |
respect-for-aspect | aspect-ratio: width / height >; |
Extra Guides
Snippets generation from Selected line/lines
Contributing
This is an Open Source Project with MIT License.
You can also contribute to this extension by adding your own list of CSS Snippets which you think will help others increase their productivity.
See Contributing Docs → for detailed guidance.
Attributions
Snippet Ideation:
Snippet Generation:
Docs Inspiration:
Contributing Inspiration:
Huge thanks 🙏: to above wonderful persons for creating awesome projects which helped me build this project.
Code snippets are templates that make it easier to enter repeating code patterns, such as loops or conditional-statements.
In Visual Studio Code, snippets appear in IntelliSense ( ⌃Space (Windows, Linux Ctrl+Space ) ) mixed with other suggestions, as well as in a dedicated snippet picker (Insert Snippet in the Command Palette). There is also support for tab-completion: Enable it with "editor.tabCompletion": "on" , type a snippet prefix (trigger text), and press Tab to insert a snippet.
The snippet syntax follows the TextMate snippet syntax with the exceptions of 'interpolated shell code' and the use of \u ; both are not supported.
Built-in snippets
VS Code has built-in snippets for a number of languages such as: JavaScript, TypeScript, Markdown, and PHP.
You can see the available snippets for a language by running the Insert Snippet command in the Command Palette to get a list of the snippets for the language of the current file. However, keep in mind that this list also includes user snippets that you have defined, and any snippets provided by extensions you have installed.
Install snippets from the Marketplace
Many extensions on the VS Code Marketplace include snippets. You can search for extensions that contains snippets in the Extensions view ( ⇧⌘X (Windows, Linux Ctrl+Shift+X ) ) using the @category:"snippets" filter.
If you find an extension you want to use, install it, then restart VS Code and the new snippets will be available.
Create your own snippets
You can easily define your own snippets without any extension. To create or edit your own snippets, select User Snippets under File > Preferences (Code > Preferences on macOS), and then select the language (by language identifier) for which the snippets should appear, or the New Global Snippets file option if they should appear for all languages. VS Code manages the creation and refreshing of the underlying snippets file(s) for you.
Snippets files are written in JSON, support C-style comments, and can define an unlimited number of snippets. Snippets support most TextMate syntax for dynamic behavior, intelligently format whitespace based on the insertion context, and allow easy multiline editing.
Below is an example of a for loop snippet for JavaScript:
In the example above:
- "For Loop" is the snippet name. It is displayed via IntelliSense if no description is provided.
- prefix defines one or more trigger words that display the snippet in IntelliSense. Substring matching is performed on prefixes, so in this case, "fc" could match "for-const".
- body is one or more lines of content, which will be joined as multiple lines upon insertion. Newlines and embedded tabs will be formatted according to the context in which the snippet is inserted.
- description is an optional description of the snippet displayed by IntelliSense.
Additionally, the body of the example above has three placeholders (listed in order of traversal): $ , $ , and $0 . You can quickly jump to the next placeholder with Tab , at which point you may edit the placeholder or jump again the next one. The string after the colon (if any) is the default text, for example element in $ . Placeholder traversal order is ascending by number, starting from one; zero is an optional special case that always comes last, and exits snippet mode with the cursor at the specified position.
Snippet scope
Snippets are scoped so that only relevant snippets are suggested. Snippets can be scoped by either:
- the language(s) to which snippets are scoped (possibly all)
- the project(s) to which snippets are scoped (probably all)
Language snippet scope
Every snippet is scoped to one, several, or all ("global") languages based on whether it is defined in:
Single-language user-defined snippets are defined in a specific language's snippet file (for example javascript.json ), which you can access by language identifier through Preferences: Configure User Snippets. A snippet is only accessible when editing the language for which it is defined.
Multi-language and global user-defined snippets are all defined in "global" snippet files (JSON with the file suffix .code-snippets ), which is also accessible through Preferences: Configure User Snippets. In a global snippets file, a snippet definition may have an additional scope property that takes one or more language identifiers, which makes the snippet available only for those specified languages. If no scope property is given, then the global snippet is available in all languages.
Most user-defined snippets are scoped to a single language, and so are defined in a language-specific snippet file.
Project snippet scope
You can also have a global snippets file (JSON with file suffix .code-snippets ) scoped to your project. Project-folder snippets are created with the New Snippets file for ' '. option in the Preferences: Configure User Snippets dropdown menu and are located at the root of the project in a .vscode folder. Project snippet files are useful for sharing snippets with all users working in that project. Project-folder snippets are similar to global snippets and can be scoped to specific languages through the scope property.
Snippet syntax
The body of a snippet can use special constructs to control cursors and the text being inserted. The following are supported features and their syntaxes:
Tabstops
With tabstops, you can make the editor cursor move inside a snippet. Use $1 , $2 to specify cursor locations. The number is the order in which tabstops will be visited, whereas $0 denotes the final cursor position. Multiple occurrences of the same tabstop are linked and updated in sync.
Placeholders
Placeholders are tabstops with values, like $ . The placeholder text will be inserted and selected such that it can be easily changed. Placeholders can be nested, like $> .
Choice
Placeholders can have choices as values. The syntax is a comma-separated enumeration of values, enclosed with the pipe-character, for example $ <1|one,two,three|>. When the snippet is inserted and the placeholder selected, choices will prompt the user to pick one of the values.
Variables
With $name or $ , you can insert the value of a variable. When a variable isn't set, its default or the empty string is inserted. When a variable is unknown (that is, its name isn't defined) the name of the variable is inserted and it is transformed into a placeholder.
The following variables can be used:
- TM_SELECTED_TEXT The currently selected text or the empty string
- TM_CURRENT_LINE The contents of the current line
- TM_CURRENT_WORD The contents of the word under cursor or the empty string
- TM_LINE_INDEX The zero-index based line number
- TM_LINE_NUMBER The one-index based line number
- TM_FILENAME The filename of the current document
- TM_FILENAME_BASE The filename of the current document without its extensions
- TM_DIRECTORY The directory of the current document
- TM_FILEPATH The full file path of the current document
- RELATIVE_FILEPATH The relative (to the opened workspace or folder) file path of the current document
- CLIPBOARD The contents of your clipboard
- WORKSPACE_NAME The name of the opened workspace or folder
- WORKSPACE_FOLDER The path of the opened workspace or folder
For inserting the current date and time:
- CURRENT_YEAR The current year
- CURRENT_YEAR_SHORT The current year's last two digits
- CURRENT_MONTH The month as two digits (example '02')
- CURRENT_MONTH_NAME The full name of the month (example 'July')
- CURRENT_MONTH_NAME_SHORT The short name of the month (example 'Jul')
- CURRENT_DATE The day of the month as two digits (example '08')
- CURRENT_DAY_NAME The name of day (example 'Monday')
- CURRENT_DAY_NAME_SHORT The short name of the day (example 'Mon')
- CURRENT_HOUR The current hour in 24-hour clock format
- CURRENT_MINUTE The current minute as two digits
- CURRENT_SECOND The current second as two digits
- CURRENT_SECONDS_UNIX The number of seconds since the Unix epoch
For inserting random values:
- RANDOM 6 random Base-10 digits
- RANDOM_HEX 6 random Base-16 digits
- UUID A Version 4 UUID
For inserting line or block comments, honoring the current language:
- BLOCK_COMMENT_START Example output: in PHP /* or in HTML
- BLOCK_COMMENT_END Example output: in PHP */ or in HTML -->
- LINE_COMMENT Example output: in PHP //
The snippet below inserts /* Hello World */ in JavaScript files and in HTML files:
Variable transforms
Transformations allow you to modify the value of a variable before it is inserted. The definition of a transformation consists of three parts:
- A regular expression that is matched against the value of a variable, or the empty string when the variable cannot be resolved.
- A "format string" that allows to reference matching groups from the regular expression. The format string allows for conditional inserts and simple modifications.
- Options that are passed to the regular expression.
The following example inserts the name of the current file without its ending, so from foo.txt it makes foo .
Placeholder-Transform
Like a Variable-Transform, a transformation of a placeholder allows changing the inserted text for the placeholder when moving to the next tab stop. The inserted text is matched with the regular expression and the match or matches - depending on the options - are replaced with the specified replacement format text. Every occurrence of a placeholder can define its own transformation independently using the value of the first placeholder. The format for Placeholder-Transforms is the same as for Variable-Transforms.
Transform examples
The examples are shown within double quotes, as they would appear inside a snippet body, to illustrate the need to double escape certain characters. Sample transformations and the resulting output for the filename example-123.456-TEST.js .
Example | Output | Explanation |
---|---|---|
"$" | example-123_456-TEST.js | Replace the first . with _ |
"$" | example_123_456_TEST_js | Replace each . or - with _ |
"$/>" | EXAMPLE-123.456-TEST.JS | Change to all uppercase |
"$" | example123456TESTjs | Remove non-alphanumeric characters |
Grammar
Below is the EBNF (extended Backus-Naur form) for snippets. With \ (backslash), you can escape $ , > , and \ . Within choice elements, the backslash also escapes comma and pipe characters.
Using TextMate snippets
You can also use existing TextMate snippets (.tmSnippets) with VS Code. See the Using TextMate Snippets topic in our Extension API section to learn more.
Assign keybindings to snippets
You can create custom keybindings to insert specific snippets. Open keybindings.json (Preferences: Open Keyboard Shortcuts File), which defines all your keybindings, and add a keybinding passing "snippet" as an extra argument:
The keybinding will invoke the Insert Snippet command but instead of prompting you to select a snippet, it will insert the provided snippet. You define the custom keybinding as usual with a keyboard shortcut, command ID, and optional when clause context for when the keyboard shortcut is enabled.
Also, instead of using the snippet argument value to define your snippet inline, you can reference an existing snippet by using the langId and name arguments. The langId argument selects the language for which the snippet denoted by name is inserted, e.g the sample below selects the myFavSnippet that's available for csharp -files.
Next steps
-
- VS Code has a rich command-line interface to open or diff files and install extensions. - Learn about other ways to extend VS Code. - You can package snippets for use in VS Code.
Common questions
What if I want to use existing TextMate snippets from a .tmSnippet file?
You can easily package TextMate snippets files for use in VS Code. See Using TextMate Snippets in our Extension API documentation.
How do I have a snippet place a variable in the pasted script?
To have a variable in the pasted script, you need to escape the '$' of the $variable name so that it isn't parsed by the snippet expansion phase.
This results in the pasted snippet as:
Can I remove snippets from IntelliSense?
Yes, you can hide specific snippets from showing in IntelliSense (completion list) by selecting the Hide from IntelliSense button to the right of snippet items in the Insert Snippet command dropdown.
You can still select the snippet with the Insert Snippet command but the hidden snippet won't be displayed in IntelliSense.
Фрагмент кода можно создать всего в несколько шагов. Все, что необходимо сделать, — это создать XML-файл, заполнить соответствующие элементы и добавить в него код. При необходимости вы можете использовать параметры замены и ссылки на проект. Импортируйте фрагмент в папку установки Visual Studio с помощью кнопки Импорт в диспетчере фрагментов кода (Сервис > Диспетчер фрагментов кода).
Шаблон фрагмента
Ниже приведен XML-код простого шаблона фрагмента:
Создание фрагмента кода
Создайте XML-файл в Visual Studio и добавьте показанный выше шаблон.
Введите заголовок фрагмента в элементе Заголовок. Используйте заголовок Square Root (Квадратный корень).
Чтобы просмотреть все доступные значения языка, просмотрите раздел об атрибутах элементов кода на странице Справочник по схеме фрагментов кода.
Добавьте код фрагмента в раздел CDATA внутри элемента Code.
Либо для Visual Basic:
Для строк кода в разделе CDATA фрагмента кода нельзя указать отступы или форматирование. Языковая служба автоматически форматирует вставленный код.
Сохраните фрагмент как SquareRoot.snippet (его можно сохранить в любом месте).
Импорт фрагмента кода
Вы можете импортировать фрагмент в установку Visual Studio с помощью диспетчера фрагментов кода. Чтобы открыть его, выберите Сервис > Диспетчер фрагментов кода.
Перейдите к папке, в которой был сохранен фрагмент кода в предыдущей процедуре, выделите его и нажмите кнопку Открыть.
Откроется диалоговое окно Импорт фрагмента кода, в котором будет предложено выбрать место добавления фрагмента (из вариантов в правой области). Один из вариантов должен быть Мои фрагменты кода. Выберите его и нажмите кнопку Готово, а затем — кнопку ОК.
В зависимости от языка кода фрагмент копируется в одно из следующих расположений:
Код фрагмента вставляется в файл кода.
Поля Description и ярлыков
Так как вы изменяете файл в том каталоге, куда его поместила система Visual Studio, вам не нужно заново импортировать его в Visual Studio.
Добавьте элементы Author и Description в элемент Header и заполните их.
Элемент Header должен выглядеть примерно так:
Откройте диспетчер фрагментов кода и выберите фрагмент кода. В правой области обратите внимание на то, что поля Description и Author теперь заполнены.
Чтобы добавить ярлык, добавьте элемент Shortcut внутрь элемента Header:
Сохраните файл фрагмента еще раз.
Код фрагмента должен быть вставлен.
Параметры замены
Возможно, вам нужно предоставить пользователю возможность заменять части фрагмента кода. Например, может потребоваться, чтобы пользователь заменил имя переменной на используемое в текущем проекте. Возможны два типа замен: литералы и объекты. Элемент Literal используется для определения замещающего элемента для отрывка кода, который полностью заключен во фрагмент, но, скорее всего, будет изменен после вставки в код (например, строка или числовое значение). Элемент Object используется для определения элемента, который необходим во фрагменте кода, но, скорее всего, будет определен вне самого фрагмента (например, экземпляр объекта или элемент управления).
Чтобы пользователь мог легко заменить число, квадратный корень которого требуется вычислить, измените элемент Snippet в файле SquareRoot.snippet следующим образом:
Обратите внимание, что замещающему литералу назначен идентификатор ( Number ). На этот идентификатор указывает ссылка в фрагменте кода путем заключения его в символы $ :
Сохраните файл фрагмента.
Откройте проект и вставьте фрагмент.
После вставки фрагмента кода редактируемый литерал выделяется для замены. Наведите указатель мыши на замещающий параметр, чтобы увидеть подсказку для значения.
Если в фрагменте имеется несколько заменяемых параметров, можно нажать клавишу TAB, чтобы переходить от одного к другому для изменения значений.
Импорт пространства имен
Ниже приведен фрагмент XML-кода, который использует метод File.Exists в пространстве имен System.IO и, таким образом, определяет элемент Imports для импорта пространства имен System.IO.
При программировании мы выполняем много рутинной работы, которая отнимает много времени. Чтобы упростить разработку того или иного продукта изначально были придуманы среды разработки такие, как VS Code. Это один из самых мощных инструментов, который сейчас представлен на рынке. На нем можно как писать сайты, так и скрипты на python, php или js. Можно встроить интерпретатор или подключить компилятор внутрь среды и «горячими клавишами» выполнять ту или иную задачу.
Сегодня в статье рассмотрим один из самых крутых инструментов – сниппет.
Что такое сниппет?
Сниппет, грубо говоря, это кусок заранее написанного кода, который можно вызывать внутри среды Vs Code. Представляет из себя json код, который содержит префикс, тело и описание сниппета. В данном случае мы рассмотрим такие сниппеты, которые можно вставить в любом месте нашего файла.
Сниппеты по умолчанию
В VS Code есть снипппеты по умолчанию, которые уже имеются в среде после установки. Самый популярный – это кусок html кода, который встраивается в вашу страницу. Так, например, если создать файл index.html и в первой строчке файла поставить “!” знак и нажать на “Tab”, то у вас встроится следующий код:
Это пустой шаблон html страницы. После встраивания данного сниппета вы можете менять его так, как Вам это нужно
Как это работает?
Сниппеты работают по принципу Emmet. Если вы когда-либо писали сайты или создавали приложения в Visual Studio, то, наверное, знаете про Emmet. Это набор встроенных или установленных плагинов, которые ускоряют разработку путем написания меньшего объема кода. По сути, то же, что будем делать и мы. Так, например, в html с помощью emmet Вы можете писать длинные конструкции в одну строчку и преобразовывать их таким образом:
Нажмем Tab и преобразуем в.
Собственные сниппеты
После того, как мы разобрались, что такое сниппеты и какие они бывают по умолчанию, время разобраться с тем, как создать свой собственный. Чтобы создать свой сниппет в Visual Studio Code, необходимо перейти во вкладку “File” → “Preferences” → “User Snippets”
После этого в верху окна откроется окно выбора / создания сниппета:
Здесь до горизонтальной разделительной черты находятся ваши собственные сниппеты. Далее есть пункт, который создает Глобальный сниппет «New Global Snippets file…», он может быть вызван и применен в любом проекте и на любом языке. Также можно создать локальный сниппет для конкретного проекта: «New Snippets file for ‘Project_name’…». В данном случае Ваш сниппет также может быть вызван в любом ЯП (Языке программирования), но внутри вашего проекта или внутри директории, для которой Вы открыли VS Code. Ниже идет список ЯП, для которых можно написать персонализированные сниппеты. Для всех самых и не самых популярных ЯП имеется возможность создать свой сниппет.
Практика
Все сниппеты создаются одинаково. Рассмотрим пример создания глобального сниппета.
- Перейдем во вкладку “File” → “Preferences” → “User Snippets”
- Выберем «New Global Snippets file…»
- Введем в появившемся окне наименование сниппета: «Test-snippet»
Как заполнить?
Раскомментируем все, что находится ниже слова «Example:».
«Print to console» — это наименование сниппета, он будет отображаться вам при вызове данного сниппета при условии, если отсутствует описание сниппета:
«scope» — это поле отображает языки и проекты, где можно использовать вызов данного сниппета. Т.к. по умолчанию стоит javascript и typescript, то, кроме данных файлов, нигде вызвать сниппет не получится.
«prefix» — это префикс вашего сниппета, т.е. короткое название, по которому будет вызываться ваш сниппет.
«body» — это тело сниппета, здесь хранится то, что напечатается после нажатия на кнопку “Tab”.
«description» — это поле «описание», которое поможет вам понять какой именно сниппет Вы вызываете.
Пример
Создаем сниппет с именем “picture”. Префикс даем аналогичный названию. В “description” пишем, о чем наш сниппет, чтобы всегда смогли понять «что он делает?». И самое интересное “body” – тело нашего сниппета, которое представляет из себя массив строк. Т.о. каждый элемент данного массива будет являться строкой. 0-ой элемент – открывает тег , на последнем даем отступ от сниппета, на предпоследнем закрываем тег
. В 1, 2, 3 элементах массива определяем ресурсы, откуда брать изображения. Обратите внимание, что перед и стоят \t – экранированная “t” – означающая табуляцию. Дальше также экранируем все кавычки и в конце строки не забываем ставить запятую, т.к. это массив.
Что такое $ ?
В сниппетах Visual Studio Code есть возможность писать плейсхолдеры. Что же это такое? Это автоматически выделенные области вашего кода, которые можно менять на лету посредством нажатия “Tab”:
На изображении выше представлен вышеупомянутый сниппет и то, что выделено белой рамкой – это и есть плейсхолдеры (placeholders). Если брать пример выше, то $ – это конструкция плейсхолдера, где Num – порядковый номер. Т.к. в srcset и в src нам нужно указать один и тот же путь, но с разными расширениями, то мы просто указываем, что во всех этих полях будет $, где «images/» — значение по умолчанию, которое подставляется в код и при изменении одного из этих полей изменятся все 3. Аналогично для «alt=””» и «title=””», только порядковый номер placeholder-а увеличивается на один.
Читайте также: