Sublime Text 3 commonly used Html/Css basic plug-in installation, sublimecss
Preface
Sublime is favored by developers with its concise and clear appearance, neat editing methods, and rich functional plug-ins. Today, I will introduce several sublime plug-ins developed based on Html/Css.
1. Package Contorl Package installation
Package Contorl: the absolutely necessary Package Manager provided by Sublime Text.
1. Press Ctrl + 'to open the console.
2. paste the code to the command line at the bottom and press Enter.
Import urllib. request, OS, hashlib; h = '7183a2d3e96f11eeadd761d777e62404 '+ 'e330c659d4bb41d3bdf022e94cab3cd0'; pf = 'package Control. sublime-package '; ipp = sublime. installed_packages_path (); urllib. request. install_opener (urllib. request. build_opener (urllib. request. proxyHandler (); by = urllib. request. urlopen ('HTTP: // sublime.wbond.net/'+ pf. replace ('', '% 20 ')). read (); dh = hashlib. sha256 (). Hexdigest (); print ('error validating download (got % s instead of % s), please try manual install '% (dh, h) if dh! = H else open (OS. path. join (ipp, pf), 'wb'). write ()
2. Emment
A quick Html compilation plug-in that is very useful!
1. Ctrl + Shift + P: Bring up the control panel
2. In the search box, type the Install Package command (which can also be abbreviated as "), press enter, and select Emmet from the list.
3. Click OK to wait for Installation
Common Emmet skills: (enter the abbreviation in the English input method and press the Tab key to trigger the effect)
3. ColorPicker
A color plugin.
1. Ctrl + Shift + P: Bring up the control panel
2. In the search box, type the Install Package command (which can also be abbreviated as "), press enter, and select ColorPicker from the list.
3. Click OK to wait for Installation
ColorPicker shortcut: Ctrl + Shift + C.
4. SideBarEnhancements
Toolkit for customizing the shortcut key for opening.
1. Ctrl + Shift + P: Bring up the control panel
2. In the search box, type the Install Package command (which can also be abbreviated as "), press enter, and select SideBarEnhancements in the list.
3. Click OK to wait for Installation
Summary
The sublime plug-in for getting started with Html/Css can start learning by installing these plug-ins first!
If you encounter other problems in the future learning process, we can install the corresponding plug-in. In short, sublime is really a code-writing artifact that you deserve.