Using Notepad ++ 5.7
I modified the .css file when I blocked / selected a rule and accidentally pressed a key in combination with alt or ctrl and other keys in the lower left part of the keyboard ... I don’t know which keys.
Moving around, a list of CSS values appears, for example: first-letter several hundred. What key commands are needed for this again, and where is the documentation for this feature? It seems to me exciting.
Code I currently selected:
input[type=reset]:hover, input[type=submit]:hover{
color:#ffffff;
background-color:#1c1c1c;
cursor:pointer;
border:2px groove #0e0e0e;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
source
share