我一直在寻找答案并尝试不同的事情而没有成功.有人可以让我知道如何使用PHP代码在两个对象之间放置空格吗?(请注意:我使用WordPress,以防万一.)
我知道如何垂直地这样做</br>
,但是水平等同于什么?
请注意,我对代码知之甚少,所以您提供的任何详细信息都非常感谢 - 非常感谢!
我有一些代码看起来像这样
\n<div class="topnav">\n <div>{{getGameView.Game.gameplayers[0].player.username}}</div>\n <p>VS</p>\n <div v-if="getGameView.Game.gameplayers.length > 1">\n\xe3\x80\x80 {{getGameView.Game.gameplayers[1].player.username}}\n\xe3\x80\x80</div>\n <div v-else>Waiting for opponent...</div>\n</div>\n
Run Code Online (Sandbox Code Playgroud)\n打印出以下内容:NameVSName\n我试图使其在 Name 和 VS 之间有一些空格,但不知道如何做到这一点。
\n