Hello, so im wondering about how to make the code in an editor no go past 80 characters (which is what I was told is the max any code should be). So for example, let’s say I have this in my code:
src: url(“http://www.Thisisjustatesttoshowyouhowlongsomeofmythingsarebecomingandtoseewhattodo”)
for me this is going past 80 characters and so what I did was this:
src: url(“http://www.Thisisjustatesttoshowyouhowlongsomeofmythings
arebecomingandtoseewhattodo”);
will this work? I know using \ works in python so thats kind of where I was headed… if this doesn’t work, how do we do it? thanks!