Copy link to clipboard
Copied
How can i change the color of a single alphabet..not full word in Adobe Dreamweaver 2018?
Use span tags to style inline elements.
<h2>My mother has <span style="color:blue">blue</span> eyes.</h2>
Copy link to clipboard
Copied
Copy an paste the following into a new document and view in your favourite browser
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style>
body {
width: 800px;
margin: auto;
}
span.blue {
color: blue;
}
</style>
</head>
<body>
<h1><span class="blue">M</span>y <span class="blue">H</span>eading</h1>
</body>
</html>
Copy link to clipboard
Copied
Use span tags to style inline elements.
<h2>My mother has <span style="color:blue">blue</span> eyes.</h2>
Copy link to clipboard
Copied
https://forums.adobe.com/people/Nancy+OShea wrote
Use span tags to style inline elements.
<h2>My mother has <span style="color:blue">blue</span> eyes.</h2>
What's that editor you are copy and pasting from, its not DW is it?
It looks basic and I might be intersted in investigating if its Mac compatible?
Copy link to clipboard
Copied
It's not an editor. It's copied from the W3School's code example.
Copy link to clipboard
Copied
https://forums.adobe.com/people/Nancy+OShea wrote
It's not an editor. It's copied from the W3School's code example.
Oh, ok.......I'll keep looking.
Copy link to clipboard
Copied
is there is any pattern in what you try to achieve.. ex... first letter of each word, or one letter about two... or each letter based on prime number order, or whatever gold number resolution ala fibonacci suit ?